avoo / qcm-admin-bundle
QCM Admin bundle for Symfony2
Installs: 123
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Language:HTML
Type:symfony-bundle
Requires
- php: >=5.3.3
- avoo/qcm-core-bundle: 1.0.*
- willdurand/js-translation-bundle: ~2.1
Requires (Dev)
This package is not auto-updated.
Last update: 2024-11-09 17:09:06 UTC
README
The admin bundle is based on QcmCoreBundle
Installation
Require avoo/qcm-admin-bundle
into your composer.json
file:
{ "require": { "avoo/qcm-admin-bundle": "dev-master" } }
Register the bundle in app/AppKernel.php
:
// app/AppKernel.php public function registerBundles() { return array( // ... new Bazinga\Bundle\JsTranslationBundle\BazingaJsTranslationBundle(), new Qcm\Bundle\CoreBundle\QcmCoreBundle(), new Qcm\Bundle\AdminBundle\QcmAdminBundle(), ); }
In app/config/config.yml
imports: - { resource: @QcmCoreBundle/Resources/config/core.yml } - { resource: @QcmAdminBundle/Resources/config/core.yml }
In app/config/routing.yml
qcm_core: prefix: / resource: "@QcmCoreBundle/Resources/config/routing.yml" qcm_admin: resource: "@QcmAdminBundle/Resources/config/routing.yml" prefix: /admin
Documentation:
See QcmCoreBundle
Credits
- Jérémy Jégou jejeavo@gmail.com
License
This bundle is released under the MIT license. See the complete license in the bundle: