Package Data | |
---|---|
Maintainer Username: | eleonov |
Package Create Date: | 2017-06-14 |
Package Last Update: | 2024-11-13 |
Home Page: | https://ronasit.com |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-14 15:17:54 |
Package Statistics | |
---|---|
Total Downloads: | 98,987 |
Monthly Downloads: | 1,864 |
Daily Downloads: | 89 |
Total Stars: | 151 |
Total Watchers: | 10 |
Total Forks: | 43 |
Total Open Issues: | 15 |
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 ronasit/laravel-swagger
RonasIT\Support\AutoDoc\AutoDocServiceProvider::class,
to providers in config/app.php
php artisan vendor:publish
LOCAL_DATA_COLLECTOR_PROD_PATH=/example-folder/documentation.json LOCAL_DATA_COLLECTOR_TEMP_PATH=/tmp/documentation.json
For 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. In annotation of custom request you can specify summary and description of this request. 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'
];
}
}
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.