unitkit/uk-install-bundle

安装 UnitKit 包的库

v0.2.0 2017-08-22 14:32 UTC

This package is auto-updated.

Last update: 2020-07-29 04:57:01 UTC


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;
   }
}

?>