apidoc.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. return [
  3. // 文档标题
  4. 'title'=>'APi接口文档',
  5. // 版权申明
  6. 'copyright'=>'Powered By HG',
  7. //生成文档的控制器
  8. 'controllers' => [
  9. 'api\\controller\\Login',
  10. 'api\\controller\\Usercenter',
  11. 'api\\controller\\Usermanage',
  12. 'api\\controller\\Upload',
  13. 'api\\controller\\Expedite',
  14. 'api\\controller\\General',
  15. 'api\\controller\\Area',
  16. 'api\\controller\\Shoppingcar',
  17. 'api\\controller\\Order',
  18. 'api\\controller\\Live',
  19. 'api\\controller\\Timedtask',
  20. 'api\\controller\\Kuaishou',
  21. ],
  22. // 指定公共注释定义的文件地址
  23. 'definitions'=>"app\controller\Definitions",
  24. // 设置可选版本
  25. 'versions'=>[
  26. ['title'=>'V1.0','folder'=>'']
  27. ],
  28. // 控制器分组列表
  29. 'groups'=>[
  30. ],
  31. // 是否开启缓存
  32. 'with_cache'=>false,
  33. // 统一的请求响应体
  34. 'responses'=>'{
  35. "code":"状态码",
  36. "message":"操作描述",
  37. "data":"业务数据",
  38. "timestamp":"响应时间戳"
  39. }',
  40. // 设置全局Authorize时请求头headers携带的key
  41. 'global_auth_key'=>"Authorization",
  42. // 密码验证配置
  43. 'auth'=>[
  44. // 是否启用密码验证
  45. 'with_auth'=>false,
  46. // 验证密码
  47. 'auth_password'=>"123456",
  48. // 验证请求头中apidocToken的字段,默认即可
  49. 'headers_key'=>"apidocToken",
  50. ],
  51. // 过滤、不解析的方法名称
  52. 'filter_method'=>[
  53. '_empty',
  54. '_initialize',
  55. '__construct',
  56. '__destruct',
  57. '__get',
  58. '__set',
  59. '__isset',
  60. '__unset',
  61. '__cal',
  62. ],
  63. ];