12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- return [
-
- 'title'=>'涤能',
-
- 'copyright'=>'Powered By HG',
-
- 'controllers' => [
- 'api\\controller\\Address',
- 'api\\controller\\Area',
- 'api\\controller\\Coupon',
- 'api\\controller\\Expedite',
- 'api\\controller\\Login',
- 'api\\controller\\Upload',
- 'api\\controller\\UserCenter',
- 'api\\controller\\WashManage',
- ],
-
- 'definitions'=>"app\controller\Definitions",
-
- 'versions'=>[
- ['title'=>'V1.0','folder'=>'']
- ],
-
- 'groups'=>[
- ],
-
- 'with_cache'=>false,
-
- 'responses'=>'{
- "code":"状态码",
- "message":"操作描述",
- "data":"业务数据",
- "timestamp":"响应时间戳"
- }',
-
- 'global_auth_key'=>"Authorization",
-
- 'auth'=>[
-
- 'with_auth'=>false,
-
- 'auth_password'=>"123456",
-
- 'headers_key'=>"apidocToken",
- ],
-
- 'filter_method'=>[
- '_empty',
- '_initialize',
- '__construct',
- '__destruct',
- '__get',
- '__set',
- '__isset',
- '__unset',
- '__cal',
- ],
- ];
|