manhattan / seo-bundle
A Symfony 2 bundle for adding SEO fields to entities.
Installs: 24
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.3
- manhattan/publish-bundle: dev-master
This package is auto-updated.
Last update: 2024-10-26 22:32:16 UTC
README
Enable SEO editable fields to bundles within the Manhattan System.
How
-
Add this bundle to the composer file:
{ "require": { ... "manhattan/seo-bundle": "dev-master" } }
-
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(), // ... ); }