lembubintik / dictate by ahmadshah

A port og laravel 3's String class
21
1
1
Package Data
Maintainer Username: ahmadshah
Maintainer Contact: ahmadshahhafizan@gmail.com (Ahmad Shah Hafizan Hamidin)
Package Create Date: 2013-01-14
Package Last Update: 2013-01-15
Language: PHP
License: MIT
Last Refreshed: 2024-04-14 15:05:50
Package Statistics
Total Downloads: 21
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

Dictate

A port of Laravel 3's Str class for Laravel 4.

Installation & Configuration

###Installing with composer

Add "dictate/string": "1.0.*" to the require section of your composer.json file

"require": {
	"dictate\string": "1.0.*"
}

Run composer install and you are done.

###Configuration

Add the following codes to the providers and aliases section in your app\config\app.php file

'providers' => array(
	...
	...
	'Dictate\String\StringServiceProvider',
),
'aliases' => array(
	...
	...
	'Str'             => 'Dictate\String\StringFacade',
),

##Usage

The documentation can be found on the Laravel website here