A great way to integrate OpenApi/Swagger into Laravel
laravel-russian/swaggervel is a Laravel package for a great way to integrate openapi/swagger into laravel.
It currently has 0 GitHub stars and 14 downloads on Packagist (latest version v2.5).
Install it with composer require laravel-russian/swaggervel.
Discover more Laravel packages by laravel-russian
or browse all Laravel packages to compare alternatives.
Last updated
This package combines Swagger-php and swagger-ui into one Laravel-friendly package.
When you run your app in debug mode, Swaggervel will scan your app folder (or any folder that is set under the "app-dir" variable in the packages config), generate swagger json files and deposit them to the doc-dir folder (default is /docs). Files are then served by swagger-ui under the api-docs director.
composer require laravel-russian/swaggervel --dev within your laravel root directoryLaravelRussian\Swaggervel\SwaggervelServiceProvider::class to your providers array in app/config/app.php above your route provider, to avoid any catch-all routesphp artisan vendor:publish --tag=public to push swagger-ui to your public folder (can be found in public/vendor/swaggervel).php artisan vendor:publish --tag=config to push the swaggervel default config into your application's config directory.php artisan vendor:publish --tag=views to push the swaggervel index view file into resources/views/vendor/swaggervel.All options are well commented within the swaggervel.php config file.
The actual Swagger spec is beyond the scope of this package. All Swaggervel does is package up swagger-php and swagger-ui in a Laravel-friendly fashion, and tries to make it easy to serve. For info on how to use swagger-php look here. For good examples of swagger-php in action look here.
This package is a fork of slampenny/Swaggervel, as it is no longer maintained.