├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── composer.json ├── readme.md └── src ├── ApiManager.php ├── ApiResponder.php ├── ApiResponderServiceProvider.php ├── Http └── Resources │ └── StanderApiResource.php └── routes └── web.php /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaalaa/laravel-api-responder/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaalaa/laravel-api-responder/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaalaa/laravel-api-responder/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaalaa/laravel-api-responder/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaalaa/laravel-api-responder/HEAD/composer.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaalaa/laravel-api-responder/HEAD/readme.md -------------------------------------------------------------------------------- /src/ApiManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaalaa/laravel-api-responder/HEAD/src/ApiManager.php -------------------------------------------------------------------------------- /src/ApiResponder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaalaa/laravel-api-responder/HEAD/src/ApiResponder.php -------------------------------------------------------------------------------- /src/ApiResponderServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaalaa/laravel-api-responder/HEAD/src/ApiResponderServiceProvider.php -------------------------------------------------------------------------------- /src/Http/Resources/StanderApiResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moaalaa/laravel-api-responder/HEAD/src/Http/Resources/StanderApiResource.php -------------------------------------------------------------------------------- /src/routes/web.php: -------------------------------------------------------------------------------- 1 |