apidoc.php 1.8 KB

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