htime / light-cms-bundle
Symfony LightCmsBundle
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:JavaScript
Type:symfony-bundle
Requires
- php: >=5.3.2
- doctrine/doctrine-bundle: *
- symfony/framework-bundle: >=2.1
- twig/twig: *
This package is not auto-updated.
Last update: 2024-12-31 05:41:35 UTC
README
WARNING: This bundle is still under developpement. While it is functional, the service names, configuration options etc. may change without worrying about BC breaks.
Installation
Step 1: Adding the bundle to your project
Add the repository to your composer.json file:
"require": { "htime/light-cms-bundle": "dev-master" }
Then run
$ php composer.phar update htime/light-cms-bundle
Step 2: AppKernel.php
Enable HtimeLightCmsBundle in app/AppKernel.php
:
public function registerBundles() { $bundles = array( ... new Htime\LightCmsBundle\HtimeLightCmsBundle(), ); }