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
Requires
- it-blaster/translation-bundle: >=1.0
- propel/propel1: ~1.6
- symfony/symfony: >=2.2
This package is not auto-updated.
Last update: 2024-10-26 16:59:27 UTC
README
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(), ); }