wechat.php 1.3 KB

12345678910111213141516171819202122232425262728
  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. 'service_url' => 'https://demo.thinkadmin.top',
  17. // 小程序支付参数
  18. 'miniapp' => [
  19. 'appid' => 'wx7a5f15ddeda9ef5a',
  20. 'appsecret' => 'a4c33b42917949652c31447e42132de0',
  21. 'mch_id' => '1612241379',
  22. 'mch_key' => '1Kg5Ez8lIM3WCatQkiua1s1jm1fghyGC',
  23. 'ssl_p12' => __DIR__ . '/cert/1332187001_20181030_cert.p12',
  24. 'cache_path' => env('runtime_path') . 'wechat' . DIRECTORY_SEPARATOR,
  25. ],
  26. ];