├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── doc ├── About.md ├── Install.md ├── README.md ├── bin │ ├── create-function-doc.php │ └── generate-doc.sh └── template │ └── About.tmpl.md ├── phpunit.xml ├── src ├── Helpers │ ├── Arr.php │ ├── Dev.php │ ├── Str.php │ ├── Util.php │ └── Yml.php └── helpers.php └── tests ├── ArrTest.php ├── DevTest.php ├── StrTest.php ├── UtilTest.php └── YmlTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /vendor 3 | /test.php 4 | /build 5 | /tmp -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/composer.lock -------------------------------------------------------------------------------- /doc/About.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/doc/About.md -------------------------------------------------------------------------------- /doc/Install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/doc/Install.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/bin/create-function-doc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/doc/bin/create-function-doc.php -------------------------------------------------------------------------------- /doc/bin/generate-doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/doc/bin/generate-doc.sh -------------------------------------------------------------------------------- /doc/template/About.tmpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/doc/template/About.tmpl.md -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Helpers/Arr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/src/Helpers/Arr.php -------------------------------------------------------------------------------- /src/Helpers/Dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/src/Helpers/Dev.php -------------------------------------------------------------------------------- /src/Helpers/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/src/Helpers/Str.php -------------------------------------------------------------------------------- /src/Helpers/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/src/Helpers/Util.php -------------------------------------------------------------------------------- /src/Helpers/Yml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/src/Helpers/Yml.php -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/src/helpers.php -------------------------------------------------------------------------------- /tests/ArrTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/tests/ArrTest.php -------------------------------------------------------------------------------- /tests/DevTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/tests/DevTest.php -------------------------------------------------------------------------------- /tests/StrTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/tests/StrTest.php -------------------------------------------------------------------------------- /tests/UtilTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/tests/UtilTest.php -------------------------------------------------------------------------------- /tests/YmlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clausnz/php-helpers/HEAD/tests/YmlTest.php --------------------------------------------------------------------------------