12345678910111213141516171819202122232425262728 |
- <?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 [
- // 微信开放平台接口
- 'service_url' => 'https://demo.thinkadmin.top',
- // 小程序支付参数
- 'miniapp' => [
- 'appid' => 'wx7a5f15ddeda9ef5a',
- 'appsecret' => 'a4c33b42917949652c31447e42132de0',
- 'mch_id' => '1612241379',
- 'mch_key' => '1Kg5Ez8lIM3WCatQkiua1s1jm1fghyGC',
- 'ssl_p12' => __DIR__ . '/cert/1332187001_20181030_cert.p12',
- 'cache_path' => env('runtime_path') . 'wechat' . DIRECTORY_SEPARATOR,
- ],
- ];
|