pomek/path2api
最新稳定版本:1.0.2
Composer 安装命令:
composer require pomek/path2api
包简介
Path2API is a simple Laravel package which allows you generate API documentation based on phpDoc comments in your classes.
README 文档
README
Path2API
Path2API is a simple Laravel package which allows you generate API documentation based on phpDoc comments in your classes.
Package is compatible with Laravel 5.
Installation
- Add package to composer:
composer require "pomek/path2api:1.0.*" - Publish configuration:
php artisan vendor:publish - Edit configuration file:
config/path2api.php - Add Service Provider to
app.php:'Pomek\Path2API\Path2ApiServiceProvider' - Artisan Command
path2api:generatewill be available now.
Configuration file
prefix- API URL prefixfile- where will save generated documentationbefore- content will be added above the generated documentationafter- content will be added below the generated documentationtemplate- template for a single record
Example
- Example Controller class:
<?php namespace App\Http\Controllers; use App\Http\Requests; class TestController extends Controller { /** * Display a listing of the resource. * * @return Response */ public function index() { // } /** * Show the form for creating a new resource. * * @return Response */ public function create() { // } /** * Store a newly created resource in storage. * * @return Response */ public function store() { // } /** * Display the specified resource. * * @param int $id * @return Response */ public function show($id) { // } /** * Show the form for editing the specified resource. * * @param int $id * @return Response */ public function edit($id) { // } /** * Update the specified resource in storage. * * @param int $id * @return Response */ public function update($id) { // } /** * Remove the specified resource from storage. * * @param int $id * @return Response */ public function destroy($id) { // } }
- Add resource to your
routes.php
Route::group(['prefix' => 'api'], function () { Route::resource('test', 'TestController'); });
- Generate documentation by CLI command
$ php artisan path2api:generate
File api.md was generated.
- Your file
api.mdshould be like:
# API Documentation Documentation generates by **Path2API** package. --- ### URL: api/test Display a listing of the resource. ### URL: api/test/create Show the form for creating a new resource. ### URL: api/test Store a newly created resource in storage. ### URL: api/test/{test} Display the specified resource. **Params:** * `$id` `int` ### URL: api/test/{test}/edit Show the form for editing the specified resource. **Params:** * `$id` `int` ### URL: api/test/{test} Update the specified resource in storage. **Params:** * `$id` `int` ### URL: api/test/{test} Update the specified resource in storage. **Params:** * `$id` `int` ### URL: api/test/{test} Remove the specified resource from storage. **Params:** * `$id` `int` --- Generates by [Path2API](//github.com/pomek/path2api)
统计信息
- 总下载量: 65
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-04-04