Package Data | |
---|---|
Maintainer Username: | webpatser |
Maintainer Contact: | christoph@downsized.nl (Christoph Kempen) |
Package Create Date: | 2013-10-31 |
Package Last Update: | 2015-10-12 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-14 15:03:17 |
Package Statistics | |
---|---|
Total Downloads: | 36,001 |
Monthly Downloads: | 63 |
Daily Downloads: | 3 |
Total Stars: | 7 |
Total Watchers: | 2 |
Total Forks: | 2 |
Total Open Issues: | 2 |
Laravel package to sanitize a string for use in URL's
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',
)
Sanitize::string('Sanitize me please!'); // sanitize-me-please
It uses the PHP Normalizer class and does some extra magic, and wraps it in the Laravel 4 grand scheme of things.