定制 chemezov/yii2-rest-api-doc 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

chemezov/yii2-rest-api-doc

最新稳定版本:1.7

Composer 安装命令:

composer require chemezov/yii2-rest-api-doc

包简介

Simple documentation generator for Yii2 REST applications based on defined API endpoints and actions annotations.

README 文档

README

Simple documentation generator for Yii2 REST applications based on defined API endpoints and actions annotations.

Installation

  • Run composer require chemezov/yii2-rest-api-doc;

Alternatively add into require section of your composer.json following string "chemezov/yii2-rest-api-doc": "1.0" and run composer update

  • In your application config file inside modules section add
'modules' => [
  ...
  'documentation' => [
      'class' => 'chemezov\yii2\rest_api_doc\Module',
      'allowedIPs' => ['127.0.0.1', '::1'],
  ],
  ...
],
  • In your application config file inside bootstrap section add:
'bootstrap' => [
  ...
  'documentation'
  ...
],

Please, note. You may change documentation into any other word, which would be better to call documentation for your REST API.

  • Now run your application at http://<yourappdomain>/documentation and if you did everything correct, you shoul see something like this: alt tag

Usage

  • First of all you should know that this documentation generator will work only in case you define your REST API endpoints using following principles: http://www.yiiframework.com/doc-2.0/guide-rest-routing.html
  • Currently you can define for you endpoints following annotations types, which will be later displayed/provided by API documentation generator:
  1. Rest Title: Your endpoint title.
  2. Rest Description: Your endpoint description.
  3. Rest Fields: ['field1', 'field2'] or ['field3', 'field4']. (Please, note: or and array after it is extra and might be skipped if your service accepts only one type of body)
  4. Rest Filters: ['filter1', 'filter2'].
  5. Rest Expand: ['expandRelation1', 'expandRelation2'].
  • In case you are using CRUD services, which does not require endpoints to be defined (because they are already predefined inside yii\rest\UrlRule - http://www.yiiframework.com/doc-2.0/yii-rest-urlrule.html and implemented inside \yii\rest\ActiveController) and you still want to add some description, define in your controller empty methods with the same names (e.g. actionCreate, actionUpdate etc.) and add annotations to them as you would do for other actions implemented by you.

Example of annotations

<?php

namespace app\controllers;

/**
 * Rest Title: Example Controller title.
 * Rest Description: Your controller description.
 * Rest Model: app\models\Document.
 */
class ExampleController extends \yii\rest\ActiveController
{

    /**
     * Rest Title: Your endpoint title.
     * Rest Description: Your endpoint description.
     * Rest Fields: ['field1', 'field2'].
     * Rest Filters: ['filter1', 'filter2'].
     * Rest Expand: ['expandRelation1', 'expandRelation2'].
     */
    public function actionTest()
    {
        return ['field1', 'field2'];
    }
}

As you may see from this example, every annotation starts with its name and collon (:) and ends with a dot (.). Also the body of every annotation type might consist of PHP array. You must follow this rules in order to define properly documentation description and service testing functionality.

统计信息

  • 总下载量: 13.65k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 15
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-05-22