├── .github └── workflows │ └── php.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Laravel Response Helpers.png ├── README.md ├── composer.json ├── phpunit.xml ├── src └── helpers.php └── tests ├── ContentTest.php ├── MyResource.php ├── ResponsesTest.php └── helpers.php /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebarlow/laravel-response-helpers/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebarlow/laravel-response-helpers/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebarlow/laravel-response-helpers/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebarlow/laravel-response-helpers/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebarlow/laravel-response-helpers/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Laravel Response Helpers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebarlow/laravel-response-helpers/HEAD/Laravel Response Helpers.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebarlow/laravel-response-helpers/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebarlow/laravel-response-helpers/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebarlow/laravel-response-helpers/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebarlow/laravel-response-helpers/HEAD/src/helpers.php -------------------------------------------------------------------------------- /tests/ContentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebarlow/laravel-response-helpers/HEAD/tests/ContentTest.php -------------------------------------------------------------------------------- /tests/MyResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebarlow/laravel-response-helpers/HEAD/tests/MyResource.php -------------------------------------------------------------------------------- /tests/ResponsesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebarlow/laravel-response-helpers/HEAD/tests/ResponsesTest.php -------------------------------------------------------------------------------- /tests/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikebarlow/laravel-response-helpers/HEAD/tests/helpers.php --------------------------------------------------------------------------------