glavweb/cms-core-bundle

There is no license information available for the latest version (v0.2.0) of this package.

Symfony GlavwebCmsCoreBundle.

v0.2.0 2018-04-16 12:25 UTC

This package is auto-updated.

Last update: 2024-04-24 01:58:13 UTC


README

Get the bundle using composer

Add GlavwebCmsCoreBundle by running this command from the terminal at the root of your Symfony project:

php composer.phar require glavweb/cms-core-bundle

Enable the bundle

To start using the bundle, register the bundle in your application's kernel class:

// app/AppKernel.php
public function registerBundles()
{
    $bundles = array(
        // ...
        new Glavweb\CmsCoreBundle\GlavwebCmsCoreBundle(),
        // ...
    );
}