├── LICENSE.md ├── README.md ├── composer.json ├── src ├── ApiManagerServiceProvider.php ├── ApiRequestProxy.php ├── ApiServer.php └── Console │ └── Commands │ ├── MakeApi.php │ └── MakeApiResponse.php └── stubs ├── api-response.stub └── api.stub /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/ApiManager/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/ApiManager/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/ApiManager/HEAD/composer.json -------------------------------------------------------------------------------- /src/ApiManagerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/ApiManager/HEAD/src/ApiManagerServiceProvider.php -------------------------------------------------------------------------------- /src/ApiRequestProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/ApiManager/HEAD/src/ApiRequestProxy.php -------------------------------------------------------------------------------- /src/ApiServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/ApiManager/HEAD/src/ApiServer.php -------------------------------------------------------------------------------- /src/Console/Commands/MakeApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/ApiManager/HEAD/src/Console/Commands/MakeApi.php -------------------------------------------------------------------------------- /src/Console/Commands/MakeApiResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/ApiManager/HEAD/src/Console/Commands/MakeApiResponse.php -------------------------------------------------------------------------------- /stubs/api-response.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/ApiManager/HEAD/stubs/api-response.stub -------------------------------------------------------------------------------- /stubs/api.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Laragear/ApiManager/HEAD/stubs/api.stub --------------------------------------------------------------------------------