Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ronasit/laravel-swagger
Laravel-Swagger is a fully automate tool which allows to generate and save swagger-based documentation after successful completing your application's feature tests.
https://github.com/ronasit/laravel-swagger
automation laravel openapi php swagger swagger-documentation
Last synced: about 16 hours ago
JSON representation
Laravel-Swagger is a fully automate tool which allows to generate and save swagger-based documentation after successful completing your application's feature tests.
- Host: GitHub
- URL: https://github.com/ronasit/laravel-swagger
- Owner: RonasIT
- License: mit
- Created: 2017-06-14T07:16:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-26T03:42:47.000Z (11 months ago)
- Last Synced: 2024-04-14T08:28:37.783Z (7 months ago)
- Topics: automation, laravel, openapi, php, swagger, swagger-documentation
- Language: PHP
- Homepage: https://ronasit.com
- Size: 4.8 MB
- Stars: 128
- Watchers: 10
- Forks: 42
- Open Issues: 7
-
Metadata Files:
- Readme: readme.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Laravel Swagger plugin
[![Laravel Swagger](https://github.com/RonasIT/laravel-swagger/actions/workflows/laravel.yml/badge.svg?branch=master)](https://github.com/RonasIT/laravel-swagger/actions/workflows/laravel.yml)
[![Coverage Status](https://coveralls.io/repos/github/RonasIT/laravel-swagger/badge.svg?branch=master)](https://coveralls.io/github/RonasIT/laravel-swagger?branch=master)## Comparison to another documentation generators
| | LaravelSwagger | [Scramble](https://github.com/dedoc/scramble) |
|----------------------------------------------------|------------------------|----------------------------------------------|
| Force developers to write tests | :white_check_mark: | :x: |
| Guarantee that API works | :white_check_mark: | :x: |
| Works with any route types covered by tests | :white_check_mark: | :x: |
| Generate response schema using JSON Resource class | :x: | :white_check_mark: |
| Runtime documentation generation | :x: | :white_check_mark: |## Introduction
This plugin is designed to generate documentation for your REST API during the
passing PHPUnit tests.## Installation
1. Install the package using the following command: `composer require ronasit/laravel-swagger`
> ***Note***
>
> For Laravel 5.5 or later the package will be auto-discovered.
> For older versions add the `AutoDocServiceProvider` to the
> providers array in `config/app.php` as follow:
>
> ```php
> 'providers' => [
> ...
> RonasIT\AutoDoc\AutoDocServiceProvider::class,
> ],
> ```2. Run `php artisan vendor:publish --provider=RonasIT\\AutoDoc\\AutoDocServiceProvider`
1. Add `\RonasIT\AutoDoc\Http\Middleware\AutoDocMiddleware::class` middleware to the global HTTP middleware list `bootstrap\app.php`:```php
return Application::configure(basePath: dirname(__DIR__))
->withMiddleware(function (Middleware $middleware) {
$middleware->use([
...
\RonasIT\AutoDoc\Http\Middleware\AutoDocMiddleware::class,
]);
});
```4. Add `\RonasIT\AutoDoc\Traits\AutoDocTestCaseTrait` trait to `tests/TestCase.php`
1. Configure documentation saving using one of the next ways:
- Add `SwaggerExtension` to the `` block of your `phpunit.xml`.
**Please note that this way will be removed after updating**
**PHPUnit up to 10 version (https://github.com/sebastianbergmann/phpunit/issues/4676)**```xml
./tests/Feature
```
- Call `php artisan swagger:push-documentation` console command after
the `tests` stage in your CI/CD configuration## Usage
### Basic usage
1. Create request class:
```php
'string',
'is_active' => 'boolean',
'age' => 'integer|nullable'
];
}
}```
> ***Note***
>
> For correct working of plugin you'll have to dispose all the validation rules
> in the `rules()` method of your request class. Also, your request class
> must be connected to the controller via [dependency injection](https://laravel.com/docs/11.x/container#introduction).
> Plugin will take validation rules from the request class and generate fields description
> of input parameter.2. Create a controller and a method for your route:
```php
***Note***
>
> Dependency injection of request class is optional but if it not presents,
> the "Parameters" block in the API documentation will be empty.3. Create test for API endpoint:
```php
public function testUpdate()
{
$response = $this->json('put', '/users/1', [
'name': 'Updated User',
'is_active': true,
'age': 22
]);$response->assertStatus(Response::HTTP_NO_CONTENT);
}
```4. Run tests
5. Go to route defined in the `auto-doc.route` config
6. Profit!![img.png](resources/assets/images/img.png)
### Annotations
You can use the following annotations in your request classes to customize documentation of your API endpoints:
- **@summary** - short description of request
- **@description** - implementation notes
- **@_204** - custom description of response code. You can specify any code as you want.
- **@some_field** - description of the field from the rules method
- **@deprecated** - mark route as deprecated
> ***Note***
>
> If you do not use request class, the summary and description and parameters will be empty.### Configs
- `auto-doc.route` - route for generated documentation
- `auto-doc.basePath` - root of your API### Custom driver
You can specify the way to collect and view documentation by creating your own custom driver.
You can find example of drivers [here](https://github.com/RonasIT/laravel-swagger/tree/master/src/Drivers).
### Viewing OpenAPI documentation
As of version 2.2, the package includes the ability to switch between OpenAPI documentation
viewers. To access different viewers, modify the `documentation_viewer` configuration.
This change is reflected immediately, without the need to rebuild the documentation file.### Merging additional documentations
The package supports the integration of the primary documentation with additional valid
OpenAPI files specified in the `additional_paths` configuration.## Migration guides
[3.0.1-beta](MIGRATION-GUIDES.md#301-beta)
## Contributing
Thank you for considering contributing to Laravel Swagger plugin! The contribution guide
can be found in the [Contributing guide](CONTRIBUTING.md).## License
Laravel Swagger plugin is open-sourced software licensed under the [MIT license](LICENSE).