igdr / slugify-bundle
Slugify Bundle
Installs: 32
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=7.1
- symfony/symfony: >=2.4
This package is not auto-updated.
Last update: 2024-12-19 01:34:29 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(),
// ...
);
}