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

laravelbook/laravel4-powerpack

Port of Laravel 3's HTML, Form and Str classes

3,940 84
propaganistas/laravel-helper-macros

Useful helpers and macros for Laravel 5.

63 16
ngabor84/laravel-dbconnstring-parser

Small service to parse database connection string into parts

3,147 1
thesnackalicious/combinewords

Combine words from word lists into strings in Laravel 5.

227 1
hifone/stringblade

Render Blade templates from a string

1,532 0