htime / light-cms-bundle
Symfony LightCmsBundle
dev-master
2014-12-11 12:33 UTC
Requires
- php: >=5.3.2
- doctrine/doctrine-bundle: *
- symfony/framework-bundle: >=2.1
- twig/twig: *
This package is not auto-updated.
Last update: 2024-09-24 04:10:32 UTC
README
警告:此包仍在开发中。虽然它是可用的,但服务名称、配置选项等可能会更改,无需担心BC兼容性问题。
安装
步骤 1:将包添加到您的项目中
将仓库添加到您的 composer.json 文件
"require": { "htime/light-cms-bundle": "dev-master" }
然后运行
$ php composer.phar update htime/light-cms-bundle
步骤 2:AppKernel.php
在 app/AppKernel.php
中启用 HtimeLightCmsBundle
public function registerBundles() { $bundles = array( ... new Htime\LightCmsBundle\HtimeLightCmsBundle(), ); }