coresite / corebundle
Bundle contains blanks for the development of applications based on Symfony 3
0.3.1
2017-09-18 11:39 UTC
Requires
- php: >=7.0.0
- symfony/symfony: >=2.8
README
Бандл содержит заготовки для разработки приложений на базе Symfony 3.
Установка и подключение
Установка:
$ composer require coresite/corebundle
Подключение:
// app/AppKernel.php
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
// ...
new CoreSite\CoreBundle\CoreSiteCoreBundle(),
);
// ...
}
}