coresite / corebundle
Bundle contains blanks for the development of applications based on Symfony 3
Installs: 1 789
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
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(),
);
// ...
}
}