bigelephant / string by Robbo

A string helper task with built in classes to easily add to Laravel 4
1,664
12
2
Package Data
Maintainer Username: Robbo
Maintainer Contact: robert@mercenarydesign.net (Robbo)
Package Create Date: 2013-01-15
Package Last Update: 2013-01-18
Home Page:
Language: PHP
License: Unknown
Last Refreshed: 2024-04-29 15:06:28
Package Statistics
Total Downloads: 1,664
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 12
Total Watchers: 2
Total Forks: 2
Total Open Issues: 0

String

This is a string helper class for things like turning strings into URL friendly slugs.

To install add the following to your composer.json file:

"bigelephant/string": "dev-master"

To use it within Laravel do the following

Edit your app/config/app.php file and add the following to the providers array:

'BigElephant\String\StringServiceProvider',

And then so you can use it from the String alias (or Str, if you choose so then replace String with Str in the following) add the following line to the aliases array:

'String' => 'BigElephant\String\StringFacade'

Build Status