XM/user-admin-bundle

提供简单的用户管理功能。

安装: 327

依赖项: 0

建议者: 0

安全: 0

星标: 0

关注者: 3

分支: 0

公开问题: 2

类型:symfony-bundle

0.2.8 2020-02-05 19:02 UTC

This package is auto-updated.

Last update: 2024-09-06 04:49:31 UTC


README

提供简单的用户管理功能。

CSS & JS + 使用说明可以在Symfony Starter中找到。您也可以使用自己的CSS & JS。

安装

步骤 1:下载包

此包不在Packagist上,因此需要在composer.json中手动添加仓库。

打开命令行,进入您的项目目录,然后执行以下命令以下载此包的最新稳定版本:

$ php composer.phar require xm/user-admin-bundle

此命令需要Composer

步骤 2:启用包

然后,通过将其添加到项目中app/AppKernel.php文件中注册的包列表中来启用该包。

<?php
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new XM\UserAdminBundle\XMUserAdminBundle(),
        );

        // ...
    }
}