String replacement class for Laravel 4

4.0.0 2013-09-07 17:21 UTC

This package is auto-updated.

Last update: 2024-04-08 05:33:56 UTC


README

Same functionality as core String class, but with correctly and reliably working transliteration.

Installation

Add following require to your composer.json file:

    "cohensive/str": "dev-master"

Then run composer install or composer update to download it and autoload.

In providers array you need to add new package:

'providers' => array(

	//...
	'Cohensive\Str\StrServiceProvider',
	//...

)

In aliases:

'aliases' => array(

	//...
	'Str' => 'Cohensive\Str\Facades\Str'
	//...

)

and comment out:

	//...
	//'Str' => 'Illuminate\Support\Str'
	//...