unitkit / uk-install-bundle
安装 UnitKit 包的库
v0.2.0
2017-08-22 14:32 UTC
Requires
- php: >=5.3.9
- symfony/symfony: 2.8.*
- unitkit/uk-common-bundle: >=0.0.2
- unitkit/uk-design-bundle: >=0.0.1
Requires (Dev)
- phpunit/phpunit: 3.7.*
README
Symfony 中 UnitKit 的安装包
要求
- php: >=5.3.9
- symfony/symfony: 2.8.*
安装
Composer
#!console
> composer require unitkit/uk-install-bundle
设置
app/AppKernel.php
#!php
<?php
use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\Config\Loader\LoaderInterface;
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
new UnitKit\Install\UkInstallBundle()
);
return $bundles;
}
}
?>