glavweb / cms-core-bundle
Symfony GlavwebCmsCoreBundle.
Installs: 36
Dependents: 2
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Language:HTML
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: 2024-10-24 03:00:26 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(), // ... ); }