app.php 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. return [
  15. // 应用调试模式
  16. 'app_debug' => true,
  17. // 应用Trace调试
  18. 'app_trace' => false,
  19. // 0按名称成对解析 1按顺序解析
  20. 'url_param_type' => 1,
  21. // 当前 ThinkAdmin 版本号
  22. 'thinkadmin_ver' => 'v5',
  23. 'jwt' => 'ddsc',
  24. 'jwt_time' => 14400000,
  25. // 阿里云配置
  26. 'ali_set' => [
  27. 'Key' => 'LTAI5tJ5p12drZegeWVG33xZ',
  28. 'secret' =>'82UWAiY5e5wH8tSkRvMtqVoGO0h8SB',
  29. 'host' => 'https://gaoyixia.oss-cn-hangzhou.aliyuncs.com',
  30. ],
  31. //小程序
  32. 'mini_program' => [
  33. 'app_id' => env('WECHAT_MINI_PROGRAM_APPID', ''),
  34. 'secret' => env('WECHAT_MINI_PROGRAM_SECRET',''),
  35. 'token' => env('WECHAT_MINI_PROGRAM_TOKEN', ''),
  36. 'aes_key' => env('WECHAT_MINI_PROGRAM_AES_KEY', ''),
  37. ],
  38. //微信支付
  39. 'wx_pay'=>[
  40. 'app_id'=>'wx9c6bb6d105d7e75c',//微信appid
  41. 'mch_id'=>'1636861549',//商户号
  42. 'key' =>'rYBoC4pWCekexWO8klJRWHLbGF3hEKF7',//秘钥
  43. 'cert_path'=>'wx_cert/apiclient_cert.pem', //证书地址
  44. 'key_path' =>'wx_cert/apiclient_key.pem', //证书地址
  45. ],
  46. // app 微信
  47. 'app_wx' => [
  48. 'app_id' => 'wx68d5c1549bfc69f3',
  49. 'secret' => '141c65072397996642e5afbfd7cdc789',
  50. 'mch_id'=>'1636861549',//商户号
  51. 'token' =>'',
  52. 'aes_key' =>'',
  53. 'key' =>'rYBoC4pWCekexWO8klJRWHLbGF3hEKF7',//秘钥
  54. 'cert_path'=>'wx_cert/apiclient_cert.pem', //证书地址
  55. 'key_path' =>'wx_cert/apiclient_key.pem', //证书地址
  56. ],
  57. // 公众号
  58. 'official_account'=>[
  59. 'appid'=>'wx9c6bb6d105d7e75c',//微信appid
  60. 'secret'=>'ca8049a1f3206636eddbaa7695872231',//微信appid
  61. 'mch_id'=>'1636861549',//商户号
  62. 'key' =>'rYBoC4pWCekexWO8klJRWHLbGF3hEKF7',//秘钥
  63. 'cert_path'=>'wx_cert/apiclient_cert.pem', //证书地址
  64. 'key_path' =>'wx_cert/apiclient_key.pem', //证书地址
  65. ],
  66. //极光推送配置
  67. 'jiguang'=>[
  68. 'AppKey'=>'02a7faefd91c8a6a446a6a14',//AppKey
  69. 'MasterSecret'=>'ba2e100db997024d9b6e5d35',//MasterSecret
  70. ],
  71. // app
  72. ];