boshurik / admin-bundle
Admin panel
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 0
Open Issues: 0
Type:symfony-bundle
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-11-12 04:17:15 UTC
README
Inspired by standard crud generator
Installation
Composer
$ composer require boshurik/admin-bundle
Register the bundle
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new BoShurik\AdminBundle\BoShurikAdminBundle(), ); // ... }
Add routes to app/config/routing.yml
BoShurikAdminBundle: resource: "@BoShurikAdminBundle/Resources/config/routing.yml" prefix: /admin
Add administrator entity, form type and form filter classes
TBD
Add security configuration
TBD
Development
npm install
bower install
gulp build
or just
npm install && bower install && gulp build