dictate/string

A port og laravel 3's String class
24 1
Install
composer require dictate/string
Latest Version:v1.0.2
PHP:>=5.3.0
License:MIT
Last Updated:Jan 15, 2013
Links: GitHub  ·  Packagist
Maintainer: ahmadshah

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

Related Packages

sngrl/string-blade-compiler

Render Blade templates from string variable

24,454 8
codingphase/reference-generator

Reference generator for Laravel

1,070 0
clarkeash/str

An extraction of Laravels Str class from Illuminate/Support.

185,333 1
jaybizzle/safeurl

A Laravel package to create safe, SEO friendly urls

91,147 17
hifone/stringblade

Render Blade templates from a string

1,513 0