├── .editorconfig ├── .styleci.yml ├── LICENSE.md ├── README.md ├── composer.json └── src ├── Macros ├── Error.php ├── Message.php ├── Pdf.php └── Success.php ├── ResponseMacroInterface.php ├── ResponseMacros.php └── ResponseMacrosServiceProvider.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-response-macros/HEAD/.editorconfig -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-response-macros/HEAD/.styleci.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-response-macros/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-response-macros/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-response-macros/HEAD/composer.json -------------------------------------------------------------------------------- /src/Macros/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-response-macros/HEAD/src/Macros/Error.php -------------------------------------------------------------------------------- /src/Macros/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-response-macros/HEAD/src/Macros/Message.php -------------------------------------------------------------------------------- /src/Macros/Pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-response-macros/HEAD/src/Macros/Pdf.php -------------------------------------------------------------------------------- /src/Macros/Success.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-response-macros/HEAD/src/Macros/Success.php -------------------------------------------------------------------------------- /src/ResponseMacroInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-response-macros/HEAD/src/ResponseMacroInterface.php -------------------------------------------------------------------------------- /src/ResponseMacros.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-response-macros/HEAD/src/ResponseMacros.php -------------------------------------------------------------------------------- /src/ResponseMacrosServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/appstract/laravel-response-macros/HEAD/src/ResponseMacrosServiceProvider.php --------------------------------------------------------------------------------