LaravelSwagger | 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: |
This plugin is designed to generate documentation for your REST API during the passing PHPUnit tests.
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 inconfig/app.php
as follow:'providers' => [ ... RonasIT\AutoDoc\AutoDocServiceProvider::class, ],
php artisan vendor:publish --provider=RonasIT\\AutoDoc\\AutoDocServiceProvider
\RonasIT\AutoDoc\Http\Middleware\AutoDocMiddleware::class
middleware to the global HTTP middleware list bootstrap\app.php
: return Application::configure(basePath: dirname(__DIR__))
->withMiddleware(function (Middleware $middleware) {
$middleware->use([
...
\RonasIT\AutoDoc\Http\Middleware\AutoDocMiddleware::class,
]);
});
\RonasIT\AutoDoc\Traits\AutoDocTestCaseTrait
trait to tests/TestCase.php
Configure documentation saving using one of the next ways:
SwaggerExtension
to the <extensions>
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)<phpunit>
<extensions>
<bootstrap class="RonasIT\AutoDoc\Support\PHPUnit\Extensions\SwaggerExtension"/>
</extensions>
<testsuites>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
</testsuites>
</phpunit>
php artisan swagger:push-documentation
console command after
the tests
stage in your CI/CD configurationCreate request class:
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
/**
* @summary Update user
*
* @deprecated
*
* @description
* This request should be used for updating the user data
*
* @_204 Successful
*
* @is_active will indicate whether the user is active or not
*/
class UpdateUserDataRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Validation Rules
*
* @return array
*/
public function rules()
{
return [
'name' => '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. Plugin will take validation rules from the request class and generate fields description of input parameter.
Create a controller and a method for your route:
<?php
namespace App\Http\Controllers;
use App\Http\Requests\Users\UpdateUserDataRequest;
class UserController extends Controller
{
public function update(UpdateUserDataRequest $request, UserService $service, $id)
{
// do something here...
return response('', Response::HTTP_NO_CONTENT);
}
}
Note
Dependency injection of request class is optional but if it not presents, the "Parameters" block in the API documentation will be empty.
Create test for API endpoint:
public function testUpdate()
{
$response = $this->json('put', '/users/1', [
'name': 'Updated User',
'is_active': true,
'age': 22
]);
$response->assertStatus(Response::HTTP_NO_CONTENT);
}
Run tests
Go to route defined in the auto-doc.route
config
Profit!
You can use the following annotations in your request classes to customize documentation of your API endpoints:
Note
If you do not use request class, the summary and description and parameters will be empty.
auto-doc.route
- route for generated documentationauto-doc.basePath
- root of your APIYou can specify the way to collect and view documentation by creating your own custom driver.
You can find example of drivers here.
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.
The package supports the integration of the primary documentation with additional valid
OpenAPI files specified in the additional_paths
configuration.
Thank you for considering contributing to Laravel Swagger plugin! The contribution guide can be found in the Contributing guide.
Laravel Swagger plugin is open-sourced software licensed under the MIT license.