apidoc.php 2.1 KB

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