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

0.3.1 2017-09-18 11:39 UTC

This package is not auto-updated.

Last update: 2025-06-22 00:10:28 UTC


README

Бандл содержит заготовки для разработки приложений на базе Symfony 3.

Установка и подключение

Установка:

$ composer require coresite/corebundle

Подключение:

// app/AppKernel.php
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new CoreSite\CoreBundle\CoreSiteCoreBundle(),
        );

        // ...
    }
}