unitkit/uk-install-bundle

library for install UnitKit package

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

This package is auto-updated.

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


README

Install Bundle for UnitKit in Symfony.

Requires

  • php: >=5.3.9
  • symfony/symfony: 2.8.*

Install

Composer

#!console

> composer require unitkit/uk-install-bundle

Setup

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

?>