manhattan/seo-bundle

A Symfony 2 bundle for adding SEO fields to entities.

dev-master 2013-11-10 11:29 UTC

This package is auto-updated.

Last update: 2024-03-26 21:24:25 UTC


README

Enable SEO editable fields to bundles within the Manhattan System.

How

  1. Add this bundle to the composer file:

     {
         "require": {
             ...
             "manhattan/seo-bundle": "dev-master"
         }
     }
    
  2. Add this bundle to your app kernel:

     // app/AppKernel.php
     public function registerBundles()
     {
         return array(
             // ...
             new Manhattan\Bundle\ConsoleBundle\ManhattanConsoleBundle(),
             new Manhattan\PublishBundle\ManhattanPublishBundle(),
             new Manhattan\SEOBundle\ManhattanSEOBundle(),
             // ...
         );
     }