apidoc.php 1.6 KB

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