1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?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' => 14400000,
- // 阿里云配置
- 'ali_set' => [
- 'Key' => 'LTAI5tJ5p12drZegeWVG33xZ',
- 'secret' =>'82UWAiY5e5wH8tSkRvMtqVoGO0h8SB',
- 'host' => 'https://gaoyixia.oss-cn-hangzhou.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'=>'wx9c6bb6d105d7e75c',//微信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' => 'wx68d5c1549bfc69f3',
- 'secret' => '141c65072397996642e5afbfd7cdc789',
- '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', //证书地址
- ],
- //极光推送配置
- 'jiguang'=>[
- 'AppKey'=>'02a7faefd91c8a6a446a6a14',//AppKey
- 'MasterSecret'=>'ba2e100db997024d9b6e5d35',//MasterSecret
- ],
- // app
- ];
|