it-blaster/seo-bundle

Symfony2 seo bundle.

Installs: 118

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 6

Forks: 0

Open Issues: 1

Type:symfony-bundle

v1.0.1 2015-04-27 09:56 UTC

This package is not auto-updated.

Last update: 2024-04-13 13:50:28 UTC


README

Scrutinizer Code Quality Build Status

Symfony2 seo bundle

Installation

Добавьте ItBlasterSeoBundle в composer.json:

{
    "require": {
        "it-blaster/seo-bundle": "dev-master"
	},
}

Теперь запустите композер, чтобы скачать бандл командой:

$ php composer.phar update it-blaster/seo-bundle

Композер установит бандл в папку проекта vendor/it-blaster/seo-bundle.

Далее подключите бандл в ядре AppKernel.php:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new ItBlaster\SeoBundle\ItBlasterSeoBundle(),
    );
}