bigelephant/string
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'
Related Packages
doctrine/dbal
Powerful PHP database abstraction layer (DBAL) with many features for database s...
631,580,251
9,707
laravel/serializable-closure
Laravel Serializable Closure provides an easy and secure way to serialize closur...
404,034,618
608
nunomaduro/collision
Cli error handling for console/command-line PHP applications.
384,821,166
4,658
