dictate / string
A port og laravel 3's String class
Installs: 24
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/dictate/string
Requires
- php: >=5.3.0
- illuminate/config: 4.0.x
- illuminate/container: 4.0.x
- illuminate/filesystem: 4.0.x
- illuminate/support: 4.0.x
Requires (Dev)
- mockery/mockery: 0.7.*
This package is not auto-updated.
Last update: 2025-10-11 20:35:54 UTC
README
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