├── .editorconfig ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── composer.json ├── logo.png ├── logo.svg ├── phpcs.xml.dist ├── phpunit.xml ├── src ├── Collections │ └── CollectionMacrosServiceProvider.php └── Methods │ └── helpers.php └── tests ├── TestCase.php └── Unit ├── Collections └── CollectionMacrosTest.php └── Methods └── GlobalHelpersTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastiaanluca/laravel-helpers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastiaanluca/laravel-helpers/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastiaanluca/laravel-helpers/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastiaanluca/laravel-helpers/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastiaanluca/laravel-helpers/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastiaanluca/laravel-helpers/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastiaanluca/laravel-helpers/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastiaanluca/laravel-helpers/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastiaanluca/laravel-helpers/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastiaanluca/laravel-helpers/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastiaanluca/laravel-helpers/HEAD/composer.json -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastiaanluca/laravel-helpers/HEAD/logo.png -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastiaanluca/laravel-helpers/HEAD/logo.svg -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastiaanluca/laravel-helpers/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastiaanluca/laravel-helpers/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Collections/CollectionMacrosServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastiaanluca/laravel-helpers/HEAD/src/Collections/CollectionMacrosServiceProvider.php -------------------------------------------------------------------------------- /src/Methods/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastiaanluca/laravel-helpers/HEAD/src/Methods/helpers.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastiaanluca/laravel-helpers/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/Collections/CollectionMacrosTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastiaanluca/laravel-helpers/HEAD/tests/Unit/Collections/CollectionMacrosTest.php -------------------------------------------------------------------------------- /tests/Unit/Methods/GlobalHelpersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebastiaanluca/laravel-helpers/HEAD/tests/Unit/Methods/GlobalHelpersTest.php --------------------------------------------------------------------------------