Provided middleware for generating of swagger-documentation file by run testing of RESTful API.
tenantcloud/laravel-auto-generate-swagger is a Laravel package for provided middleware for generating of swagger-documentation file by run testing of restful api..
It currently has 1 GitHub stars and 30.031 downloads on Packagist (latest version v1.6.2).
Install it with composer require tenantcloud/laravel-auto-generate-swagger.
Discover more Laravel packages by tenantcloud
or browse all Laravel packages to compare alternatives.
Last updated
This plugin is designed to gather information and generate documentation about your Rest-Api while passing the tests. The principle of operation is based on the fact that the special Middleware installed on the Route for which you want to collect information that after the successful completion of all tests generated Swagger-file. In addition this plug-in is able to draw Swagger-template to display the generated documentation for a config.
composer require tenantcloud/laravel-auto-generate-swaggerRonasIT\Support\AutoDoc\AutoDocServiceProvider::class, to providers in config/app.phpphp artisan vendor:publishLOCAL_DATA_COLLECTOR_PROD_PATH=/example-folder/documentation.json LOCAL_DATA_COLLECTOR_TEMP_PATH=/tmp/documentation.jsonFor correct working of plugin you have to dispose all the validation rules in the rules() method of class YourRequest, which must be connected to the controller via DependencyInjection. Plugin will take validation rules from your request and use it as description of input parameter.
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
/**
* @summary Updating of user
*
* @description
* This request mostly needed to specity flags <strong>free_comparison</strong> and
* <strong>all_cities_available</strong> of user
*
* @_204 Successful MF!
*/
class UpdateUserDataRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'all_cities_available' => 'boolean',
'free_comparison' => 'boolean'
];
}
}
In annotation of custom request you can specify summary and description of this request.
<?php
namespace App\Http\Controllers;
use App\Http\Requests\UpdateRequest;
class UpdateController
{
/**
* @tag json-api
* @summary Updating of user
*
* @description
* This request mostly needed to specity flags <strong>free_comparison</strong> and
* <strong>all_cities_available</strong> of user
*
* @_204 Successful MF!
*/
public function update(int $id, UpdateRequest $request)
{
//...
}
}
If you do not create a class Request, the summary, Implementation Notes and parameters will be empty. Plugin will collect codes and examples of responses only.
If you do not create annotations to request summary will generate automatically from Name of Request. For example request UpdateUserDataRequest will have summary Update user data request.
If you do not create annotations for descriptions of codes it will be generated automatically the following priorities:
Note about configs:
Also you can specify way to collect documentation by creating your custom data collector class.