12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?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' => 144000 * 7,
- // 阿里云配置
- 'ali_set' => [
- 'Key' => 'LTAI5tEEfowhMkLu8auo6n6G',
- 'secret' =>'ch94CL3TEwNAxXNREweZl3gfk8jQ84',
- 'host' => 'https:xieshouxiongmao.oss-cn-beijing.aliyuncs.com',
- ],
- //小程序
- 'mini_program' => [
- 'app_id' => env('WECHAT_MINI_PROGRAM_APPID', 'wxd7c4343315424795'),
- 'secret' => env('WECHAT_MINI_PROGRAM_SECRET','56f40e98d9420beeca12ff133eaea3c6'),
- 'token' => env('WECHAT_MINI_PROGRAM_TOKEN', ''),
- 'aes_key' => env('WECHAT_MINI_PROGRAM_AES_KEY', ''),
- ],
- // 小程序微信支付
- 'wx_pay'=>[
- 'app_id'=>'wxd7c4343315424795',//微信appid
- 'mch_id'=>'1624129317',//商户号
- 'key' =>'eHNqU0P1wCcNyULQPzOljBKx7BinXC3Y',//秘钥
- 'cert_path'=>'wx_cert/apiclient_cert.pem', //证书地址
- 'key_path' =>'wx_cert/apiclient_key.pem', //证书地址
- ],
- // app 微信
- 'app_wx' => [
- 'app_id' => 'wx65ad4e9ef462a9ef',
- 'secret' => 'b5d2c4782aee5b645364c97ec0120c16',
- 'mch_id'=>'1624129317',//商户号
- 'token' =>'',
- 'aes_key' =>'',
- 'key' =>'eHNqU0P1wCcNyULQPzOljBKx7BinXC3Y',//秘钥
- 'cert_path'=>'wx_cert/apiclient_cert.pem', //证书地址
- 'key_path' =>'wx_cert/apiclient_key.pem', //证书地址
- ],
- // pc 微信
- 'pc_wx' => [
- 'app_id' => 'wxb8d3d659c30867e2',
- 'secret' => '58919f08c3cef1e878288b2841e232c3',
- 'mch_id'=>'1624129317',//商户号
- 'token' =>'',
- 'aes_key' =>'',
- 'key' =>'eHNqU0P1wCcNyULQPzOljBKx7BinXC3Y',//秘钥
- 'cert_path'=>'wx_cert/apiclient_cert.pem', //证书地址
- 'key_path' =>'wx_cert/apiclient_key.pem', //证书地址
- ],
- //
- 'qq_move'=>[
- 'app_id' => '102006624',
- 'secret' => 'cDqIbgX9XgbIm28z',
- 'key' =>'eHNqU0P1wCcNyULQPzOljBKx7BinXC3Y',//秘钥
- 'cert_path'=>'wx_cert/apiclient_cert.pem', //证书地址
- 'key_path' =>'wx_cert/apiclient_key.pem', //证书地址
- ],
- ];
|