laravel-sanitize maintained by webpatser
Description
Laravel package to sanatize a string for use as URL's. It uses the PHP Normalizer class and fills whitespace with dashes.
Author
Last update
2013/11/01 15:19
(dev-master)
License
Downloads
38 222
Tags
Laravel Sanitize 
Laravel package to sanitize a string for use in URL's
Installation
Add webpatser/laravel-sanitize to composer.json.
"webpatser/laravel-sanitize": "dev-master"
Run composer update to get the latest version of Sanitize.
Edit app/config/app.php and add the alias
'aliases' => array(
'Sanitize' => 'Webpatser\Sanitize\Sanitize',
)
Usage
Sanitize::string('Sanitize me please!'); // sanitize-me-please
Notes
It uses the PHP Normalizer class and does some extra magic, and wraps it in the Laravel 4 grand scheme of things.