webpatser / laravel-sanitize by webpatser

Laravel package to sanatize a string for use as URL's. It uses the PHP Normalizer class and fills whitespace with dashes.
35,705
7
2
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-04-25 15:00:51
Package Statistics
Total Downloads: 35,705
Monthly Downloads: 77
Daily Downloads: 0
Total Stars: 7
Total Watchers: 2
Total Forks: 2
Total Open Issues: 2

Laravel Sanitize Build Status

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.