igdr / slugify-bundle
There is no license information available for the latest version (v0.1) of this package.
Slugify Bundle
v0.1
2017-01-30 12:07 UTC
Requires
- php: >=7.1
- symfony/symfony: >=2.4
This package is not auto-updated.
Last update: 2026-03-12 07:27:49 UTC
README
Installation
Add the bundle to your composer.json:
composer require igdr/slugify-bundle
and run:
php composer.phar update
Then add the SlugifyBundle to your application kernel:
// app/IgdrKernel.php
public function registerBundles()
{
return array(
// ...
new Igdr\Bundle\SlugifyBundle\IgdrSlugifyBundle(),
// ...
);
}