Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Laravel Apidoc Generator | 3,342 | 124 | 26 | 3 months ago | 102 | May 28, 2020 | 54 | mit | PHP | |
Laravel API Documentation Generator | ||||||||||
Larecipe | 2,123 | 30 | 11 | 4 months ago | 33 | March 25, 2022 | 25 | mit | PHP | |
🍪 Write gorgeous documentation for your products using Markdown inside your Laravel app. | ||||||||||
Laravel Filesystem Qiniu | 464 | 71 | 14 | 4 months ago | 10 | February 17, 2022 | 1 | PHP | ||
A Qiniu Storage filesystem for Laravel | ||||||||||
Flysystem Qcloud Cos V5 | 143 | 9 | 4 | a year ago | 36 | March 27, 2022 | 1 | mit | PHP | |
💾 Flysystem Adapter for Tencent Cloud COS V5 | ||||||||||
Idoc | 106 | 5 months ago | 8 | February 03, 2021 | 11 | mit | PHP | |||
📒📚Generate beautiful interactive documentation and Open-API 3.0 spec file from your existing Laravel app. | ||||||||||
Adoc | 97 | 2 years ago | 20 | PHP | ||||||
📄🖊轻松的的 API MD文档编写工具 | ||||||||||
Sarala | 95 | 4 years ago | 23 | January 14, 2019 | 9 | mit | JavaScript | |||
Javascript library to communicate with RESTful API built following JSON API specification. inspired by Laravel’s Eloquent | ||||||||||
Laravel Api Starter | 85 | 5 years ago | mit | PHP | ||||||
laravel5.5 + dingo/api + JWT | ||||||||||
Laravel Filesystem Cos | 60 | 4 months ago | 8 | April 24, 2022 | mit | PHP | ||||
Tencent Cloud COS storage for Laravel based on overtrue/flysystem-cos. | ||||||||||
Laravel 5.5 Lumen 5.5 With Oauth2 | 27 | 5 years ago | 4 | PHP | ||||||
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.