boshurik / admin-bundle
管理面板
dev-master / 0.x-dev
2016-08-11 10:13 UTC
Requires
- php: >=5.6.0
- knplabs/knp-paginator-bundle: ^2.5
- symfony/framework-bundle: ~2.8|~3.0
This package is auto-updated.
Last update: 2024-09-12 03:53:05 UTC
README
受标准CRUD生成器启发
安装
Composer
$ composer require boshurik/admin-bundle
注册包
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new BoShurik\AdminBundle\BoShurikAdminBundle(), ); // ... }
添加路由到 app/config/routing.yml
BoShurikAdminBundle: resource: "@BoShurikAdminBundle/Resources/config/routing.yml" prefix: /admin
添加管理员实体、表单类型和表单过滤器类
待定
添加安全配置
待定
开发
npm install
bower install
gulp build
或者
npm install && bower install && gulp build