123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkAdmin
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: http://demo.thinkadmin.top
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // +----------------------------------------------------------------------
- // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
- // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
- // +----------------------------------------------------------------------
- return [
- // 应用调试模式
- 'app_debug' => true,
- // 应用Trace调试
- 'app_trace' => false,
- // 0按名称成对解析 1按顺序解析
- 'url_param_type' => 1,
- // 当前 ThinkAdmin 版本号
- 'thinkadmin_ver' => 'v5',
- 'jwt' => 'ddsc',
- 'jwt_time' => 1440000,
- // 阿里云配置
- 'ali_set' => [
- 'Key' => 'LTAI5tEEfowhMkLu8auo6n6G',
- 'secret' =>'ch94CL3TEwNAxXNREweZl3gfk8jQ84',
- 'host' => 'https:xieshouxiongmao.oss-cn-beijing.aliyuncs.com',
- ],
- //小程序
- 'mini_program' => [
- 'app_id' => env('WECHAT_MINI_PROGRAM_APPID', ''),
- 'secret' => env('WECHAT_MINI_PROGRAM_SECRET',''),
- 'token' => env('WECHAT_MINI_PROGRAM_TOKEN', ''),
- 'aes_key' => env('WECHAT_MINI_PROGRAM_AES_KEY', ''),
- ],
- //微信支付
- 'wx_pay'=>[
- 'app_id'=>'wx0e0d8974cb91fafe',//微信appid
- 'mch_id'=>'1636861549',//商户号
- 'key' =>'rYBoC4pWCekexWO8klJRWHLbGF3hEKF7',//秘钥
- 'cert_path'=>'wx_cert/apiclient_cert.pem', //证书地址
- 'key_path' =>'wx_cert/apiclient_key.pem', //证书地址
- ],
- // app 微信
- 'app_wx' => [
- 'app_id' => 'wxb20c0bd116ad74f7',
- 'secret' => 'd3515e134a8f14abca3d86b008f45f7d',
- 'mch_id'=>'1636861549',//商户号
- 'token' =>'',
- 'aes_key' =>'',
- 'key' =>'rYBoC4pWCekexWO8klJRWHLbGF3hEKF7',//秘钥
- 'cert_path'=>'wx_cert/apiclient_cert.pem', //证书地址
- 'key_path' =>'wx_cert/apiclient_key.pem', //证书地址
- ],
- // 公众号
- 'official_account'=>[
- 'appid'=>'wx9c6bb6d105d7e75c',//微信appid
- 'secret'=>'ca8049a1f3206636eddbaa7695872231',//微信appid
- 'mch_id'=>'1636861549',//商户号
- 'key' =>'rYBoC4pWCekexWO8klJRWHLbGF3hEKF7',//秘钥
- 'cert_path'=>'wx_cert/apiclient_cert.pem', //证书地址
- 'key_path' =>'wx_cert/apiclient_key.pem', //证书地址
- ],
- // app
- ];
|