Stars: 3392
Forks: 626
Pull Requests: 369
Issues: 464
Watchers: 70
Last Updated: 2023-08-29 09:23:52
Laravel API Documentation Generator
License: MIT License
Languages: PHP, Blade
Automatically generate your API documentation from your existing Laravel/Lumen/Dingo routes.
php artisan apidoc:generate
PHP 7.2 and Laravel/Lumen 5.7 or higher are required.
If your application does not meet these requirements, you can check out the 3.x branch for older releases.
composer require --dev mpociot/laravel-apidoc-generator
Publish the config file by running:
php artisan vendor:publish --provider="Mpociot\ApiDoc\ApiDocGeneratorServiceProvider" --tag=apidoc-config
This will create an apidoc.php
file in your config
folder.
composer require mpociot/laravel-apidoc-generator
instead.bootstrap/app.php
:$app->register(\Mpociot\ApiDoc\ApiDocGeneratorServiceProvider::class);
vendor/mpociot/laravel-apidoc-generator/config/apidoc.php
to your project as config/apidoc.php
. Then add to your bootstrap/app.php
:$app->configure('apidoc');
Check out the documentation at the Beyond Code homepage.
The Laravel API Documentation Generator is free software licensed under the MIT license.