├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── composer.json ├── config └── shovel.php ├── docs ├── .nojekyll ├── README.md ├── assets │ ├── .gitkeep │ └── laravel-shovel-banner.png └── index.html ├── phpunit.xml ├── src ├── Http.php ├── Http │ └── Middleware │ │ ├── ApiMiddleware.php │ │ ├── ApiRequest.php │ │ └── ApiResponse.php └── ShovelServiceProvider.php └── tests ├── .gitkeep ├── TestCase.php └── Unit └── ShovelTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudcake/laravel-shovel/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudcake/laravel-shovel/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudcake/laravel-shovel/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudcake/laravel-shovel/HEAD/composer.json -------------------------------------------------------------------------------- /config/shovel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudcake/laravel-shovel/HEAD/config/shovel.php -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudcake/laravel-shovel/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/assets/laravel-shovel-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudcake/laravel-shovel/HEAD/docs/assets/laravel-shovel-banner.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudcake/laravel-shovel/HEAD/docs/index.html -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudcake/laravel-shovel/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudcake/laravel-shovel/HEAD/src/Http.php -------------------------------------------------------------------------------- /src/Http/Middleware/ApiMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudcake/laravel-shovel/HEAD/src/Http/Middleware/ApiMiddleware.php -------------------------------------------------------------------------------- /src/Http/Middleware/ApiRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudcake/laravel-shovel/HEAD/src/Http/Middleware/ApiRequest.php -------------------------------------------------------------------------------- /src/Http/Middleware/ApiResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudcake/laravel-shovel/HEAD/src/Http/Middleware/ApiResponse.php -------------------------------------------------------------------------------- /src/ShovelServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudcake/laravel-shovel/HEAD/src/ShovelServiceProvider.php -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudcake/laravel-shovel/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ShovelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudcake/laravel-shovel/HEAD/tests/Unit/ShovelTest.php --------------------------------------------------------------------------------