QcmAdminBundle
, (*1)
The admin bundle is based on QcmCoreBundle, (*2)
Installation
Require avoo/qcm-admin-bundle
into your composer.json file:, (*3)
``` json
{
    "require": {
        "avoo/qcm-admin-bundle": "dev-master"
    }
}, (*4)
Register the bundle in `app/AppKernel.php`:
``` 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, (*5)
``` yml
imports:
    - { resource: @QcmCoreBundle/Resources/config/core.yml }
    - { resource: @QcmAdminBundle/Resources/config/core.yml }, (*6)
In `app/config/routing.yml`
``` yml
qcm_core:
    prefix:   /
    resource: "@QcmCoreBundle/Resources/config/routing.yml"
qcm_admin:
    resource: "@QcmAdminBundle/Resources/config/routing.yml"
    prefix:   /admin
Documentation:, (*7)
See QcmCoreBundle, (*8)
Credits
License
This bundle is released under the MIT license. See the complete license in the bundle:, (*9)
License, (*10)