LaravelPackages.net
Acme Inc.
Toggle sidebar
dictate/string

A port og laravel 3's String class

24
1
v1.0.2
About dictate/string

dictate/string is a Laravel package for a port og laravel 3's string class. It currently has 1 GitHub stars and 24 downloads on Packagist (latest version v1.0.2). Install it with composer require dictate/string. Discover more Laravel packages by dictate or browse all Laravel packages to compare alternatives.

Last updated

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

Star History Chart