glavweb / cms-core-bundle
There is no license information available for the latest version (v0.2.0) of this package.
Symfony GlavwebCmsCoreBundle.
Package info
github.com/glavweb/GlavwebCmsCoreBundle
Language:HTML
pkg:composer/glavweb/cms-core-bundle
v0.2.0
2018-04-16 12:25 UTC
Requires
- php: >=5.5.9
- doctrine/doctrine-bundle: ^1.6
- doctrine/orm: ^2.5
- pixassociates/sortable-behavior-bundle: ~1.2
- sonata-project/admin-bundle: ~3.1
- symfony/form: ~2.3|~3.0
- symfony/framework-bundle: ~2.3|~3.0
This package is auto-updated.
Last update: 2026-02-24 05:47:11 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(), // ... ); }