tenolo / utilities
Only some basic utility classes.
Installs: 1 095
Dependents: 5
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: ~5.6|~7.0
- doctrine/common: ~2.6
- hackzilla/password-generator: ~1.2
- symfony/options-resolver: ~2.7|~3.0|~4.0
Requires (Dev)
- phpunit/phpunit: ^5.7
- squizlabs/php_codesniffer: ^3.4
README
Utilities Library
A growing collection of useful helper classes for PHP.
Install instructions
First you need to add tenolo/utilities
to composer.json
:
{ "require": { "tenolo/utilities": "~1.0" } }
Please note that dev-master
latest development version.
Of course you can also use an explicit version number, e.g., 1.0.*
.
Then use it ;)
<?php namespace Some\Namespace; use Tenolo\Utilities\Utils\StringUtil; // index.php $id = StringUtil::getRandomID(8);