igdr/slugify-bundle

There is no license information available for the latest version (v0.1) of this package.

Slugify Bundle

Installs: 31

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Open Issues: 0

Type:symfony-bundle

v0.1 2017-01-30 12:07 UTC

This package is not auto-updated.

Last update: 2024-04-24 21:53:19 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(),
        // ...
    );
}