htime / light-cms-bundle

Symfony LightCmsBundle

安装: 15

依赖者: 0

建议者: 0

安全性: 0

星星: 0

关注者: 1

分支: 0

开放问题: 0

语言:JavaScript

类型:symfony-bundle

dev-master 2014-12-11 12:33 UTC

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(),
    );
}