├── LICENSE.md ├── README.md ├── composer.json ├── src ├── LaravelSwagger.php ├── LaravelSwaggerServiceProvider.php └── commands │ └── GenerateSwagger.php └── templates ├── index.stub └── swagger.stub /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shailesh-ladumor/laravel-swagger/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shailesh-ladumor/laravel-swagger/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shailesh-ladumor/laravel-swagger/HEAD/composer.json -------------------------------------------------------------------------------- /src/LaravelSwagger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shailesh-ladumor/laravel-swagger/HEAD/src/LaravelSwagger.php -------------------------------------------------------------------------------- /src/LaravelSwaggerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shailesh-ladumor/laravel-swagger/HEAD/src/LaravelSwaggerServiceProvider.php -------------------------------------------------------------------------------- /src/commands/GenerateSwagger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shailesh-ladumor/laravel-swagger/HEAD/src/commands/GenerateSwagger.php -------------------------------------------------------------------------------- /templates/index.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shailesh-ladumor/laravel-swagger/HEAD/templates/index.stub -------------------------------------------------------------------------------- /templates/swagger.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shailesh-ladumor/laravel-swagger/HEAD/templates/swagger.stub --------------------------------------------------------------------------------