├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── composer.json ├── phpunit.xml.dist ├── src ├── StrHelper.php └── functions.php └── tests └── StrHelperTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | composer.lock 3 | vendor 4 | build -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awssat/str-helper/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awssat/str-helper/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awssat/str-helper/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awssat/str-helper/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awssat/str-helper/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/StrHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awssat/str-helper/HEAD/src/StrHelper.php -------------------------------------------------------------------------------- /src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awssat/str-helper/HEAD/src/functions.php -------------------------------------------------------------------------------- /tests/StrHelperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awssat/str-helper/HEAD/tests/StrHelperTest.php --------------------------------------------------------------------------------