unitkit / uk-install-bundle
library for install UnitKit package
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
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;
}
}
?>