glavweb/cms-core-bundle

该包最新版本(v0.2.0)没有可用的许可证信息。

Symfony GlavwebCmsCoreBundle.

v0.2.0 2018-04-16 12:25 UTC

This package is auto-updated.

Last update: 2024-09-24 02:52:39 UTC


README

使用composer获取此包

从您的Symfony项目根目录的终端运行此命令添加GlavwebCmsCoreBundle

php composer.phar require glavweb/cms-core-bundle

启用包

要开始使用该包,在您的应用程序的kernel类中注册该包

// app/AppKernel.php
public function registerBundles()
{
    $bundles = array(
        // ...
        new Glavweb\CmsCoreBundle\GlavwebCmsCoreBundle(),
        // ...
    );
}