├── .github └── workflows │ └── main.yml ├── .styleci.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── _config.yml ├── composer.json ├── config └── config.php ├── index.html └── src ├── Commands └── GenerateApi.php ├── LaravelApiGenerator.php ├── LaravelApiGeneratorFacade.php ├── LaravelApiGeneratorServiceProvider.php ├── Middleware └── ApiHeaderInject.php └── resources └── stubs ├── collection.stub ├── controller.stub └── resource.stub /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavingajjar/laravel-api-generator/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavingajjar/laravel-api-generator/HEAD/.styleci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavingajjar/laravel-api-generator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavingajjar/laravel-api-generator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavingajjar/laravel-api-generator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavingajjar/laravel-api-generator/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavingajjar/laravel-api-generator/HEAD/_config.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavingajjar/laravel-api-generator/HEAD/composer.json -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bhavingajjar/laravel-api-generator/HEAD/config/config.php -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 |