php-nl/laravel-api-doc
Composer 安装命令:
composer require php-nl/laravel-api-doc
包简介
Highly configurable Laravel API documentation generator
README 文档
README
Laravel API Doc
A highly configurable, beautiful, and interactive API documentation generator for Laravel.
Laravel API Doc is an elegant, zero-configuration API documentation package designed to give your Laravel projects a beautiful, interactive dashboard out of the box.
Inspired by Laravel's clean DX and the capabilities of packages like Scramble and Scribe, it automatically parses your routes, form requests, models, and JSON resources to generate a live, testable API portal exactly when you need it—without requiring you to write endless generic PHPDoc blocks.
✨ Features
- Zero Config Required: Just install and visit
/docs/api! - Beautiful UI: A premium, fully responsive 3-column layout built with Livewire and Tailwind CSS.
- AST Parsing Engine: Accurately extracts complex validation rules even when your
FormRequestrelies on unresolved route models or unauthenticated users. - Smart Model Introspection: Seamlessly infers parameter types via Eloquent Model casts and database schema.
- Automatic JSON Resources: Safely extracts
JsonResourceandResourceCollectionschemas, including automatic Laravel Pagination wrapping (detects.paginate()and addslinksandmetaschemas). - Interactive "Try It Out" Panel: Test any endpoint securely from your browser.
- Advanced Route Filtering: Exclude routes via URL patterns, route names, middleware, or directly via PHP Attributes.
- Code Snippets: Real-time multi-language snippets (cURL, JavaScript, PHP, Python) for your endpoints.
- OpenAPI Export: Export your exact API schema compliant with the OpenAPI 3.1.0 specification.
- Custom Markdown Pages: Render extra
.mddocumentation files directly in the frontend sidebar.
📦 Installation
Requires PHP 8.3+ and Laravel 11+.
You can install the package via Composer:
composer require php-nl/laravel-api-doc
Next, publish the configuration file and assets using:
php artisan vendor:publish --tag="laravel-api-doc-config" php artisan vendor:publish --tag="laravel-api-doc-assets"
🚀 Usage
Once installed, simply navigate to the predefined documentation route in your browser:
http://your-app.test/docs/api
Defining Endpoints
The package leverages Laravel's native routing metadata. Standard PHPDoc blocks, FormRequest validations, and parameter Model bindings are automatically extracted to document your API.
If your controller method returns a JsonResource or invokes a FormRequest, the package uses AST Parsing and Reflection to read the structure of your application without actually executing destructive code.
Customizing Endpoints via Attributes
Sometimes, you want to explicitly document query parameters or body payloads that aren't tied to a FormRequest, or you want to group your routes logically. Laravel API Doc provides custom PHP attributes for the ultimate developer experience (DX).
Grouping & Naming
Organize your routes in the sidebar using the #[ApiDoc] attribute:
use PhpNl\LaravelApiDoc\Attributes\ApiDoc; #[ApiDoc(group: 'Product Management', name: 'Update Product', description: 'Modify an existing product.')] public function update(Request $request, Product $product) { // ... }
Manual Parameters
If you pull data directly from the Request (e.g., request('status')) instead of using a FormRequest, you can document it seamlessly using parameter attributes:
use PhpNl\LaravelApiDoc\Attributes\QueryParam; use PhpNl\LaravelApiDoc\Attributes\BodyParam; #[QueryParam('sort', type: 'string', description: 'Field to sort by', enumValues: ['asc', 'desc'])] #[BodyParam('notify_user', type: 'boolean', required: false, description: 'Send an email notification')] public function index() { // ... }
Unauthenticated Routes
By default, the UI assumes your endpoints are secure (requiring Bearer tokens if auth middleware is detected). To mark a route as public (like login or register), use the #[Unauthenticated] attribute:
use PhpNl\LaravelApiDoc\Attributes\Unauthenticated; #[Unauthenticated] public function login(Request $request) { // ... }
🚫 Excluding Routes
You might not want your internal or horizon routes showing up in the documentation. Laravel API Doc provides 4 elegant ways to filter out routes.
1. Via Configuration Patterns (URL, Name, Middleware)
Open your config/laravel-api-doc.php and define exclusion rules:
'routes' => [ 'include' => ['api/*'], // Exclude by URL wildcards 'exclude' => [ 'api/internal/*', 'api/webhooks/*', ], // Exclude by Route Name 'exclude_names' => [ 'admin.*', 'horizon.*', ], // Exclude by assigned Middleware 'exclude_middleware' => [ 'auth:admin', ], ],
2. Via PHP Attributes
For the ultimate localized DX, you can ignore a specific Controller or Method directly in the code:
use PhpNl\LaravelApiDoc\Attributes\ExcludeFromDocs; #[ExcludeFromDocs] class SecretController extends Controller { // ... }
⚙️ Configuration
You can fully customize the behavior and look of your documentation by modifying config/laravel-api-doc.php.
return [ 'ui' => [ 'title' => 'My API Documentation', 'theme' => [ 'primary_color' => '#3b82f6', // Customize your brand color! 'background_color' => '#f8fafc', 'sidebar_width' => '300px', ], 'docs_path' => resource_path('docs/api'), // Where your custom .md files live ], // ... ];
Global Authentication
Use the Security & Authentication panel (found on the dashboard's welcome screen) to securely define your tokens locally. These tokens are placed in your browser's local storage and injected directly into the "Try It Out" playground.
Custom Markdown Pages
You can write standard .md Markdown files (e.g., Getting-Started.md, Authentication.md) and place them in the resources/docs/api directory (configurable via docs_path). They will be parsed dynamically and explicitly shown in your API sidebar navigation.
🛠 Artisan Commands
For production environments or advanced CI/CD pipelines, Laravel API Doc provides several helpful commands:
Caching Documentation
Parsing ASTs and reflecting over hundreds of controllers can be heavy. In production, you should cache the schema:
php artisan api-doc:cache
To clear the cache:
php artisan api-doc:clear
JSON Response Generation
Want to show real JSON responses instead of just schema types? Run the response generator command. It will execute safe GET endpoints locally to capture live representations of your API returns.
php artisan api-doc:generate-responses
OpenAPI Export
Export your documentation to an OpenAPI 3.1.0 compatible openapi.json file. You can view your schema live at /docs/api/openapi.json or generate it via CLI:
php artisan api-doc:openapi > openapi.json
🤝 Contributing
Please see CONTRIBUTING for details.
📄 License
The MIT License (MIT). Please see License File for more information.
php-nl/laravel-api-doc 适用场景与选型建议
php-nl/laravel-api-doc 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 21 次下载、GitHub Stars 达 2, 最近一次更新时间为 2026 年 03 月 24 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「documentation」 「api」 「docs」 「laravel」 「generate」 「openapi」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 php-nl/laravel-api-doc 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 php-nl/laravel-api-doc 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 php-nl/laravel-api-doc 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Bookdown.io With Bootswatch Styles And Prism Syntax Highlighting
Laravel package that generates RESTful API documentation in Markdown based on PHPDoc.
Api documentation generator for Laravel 5
Replacement for Swagger. It is built for Laravel
A PSR-7 compatible library for making CRUD API endpoints
Laravel API documentation generating tool
统计信息
- 总下载量: 21
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 29
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-03-24