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-11-18 15:00:13 |
Package Statistics | |
---|---|
Total Downloads: | 1,692 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 12 |
Total Watchers: | 2 |
Total Forks: | 2 |
Total Open Issues: | 0 |
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"
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'