config.php 584 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: zilongs
  5. * Date: 20-9-23
  6. * Time: 上午11:41
  7. */
  8. return [
  9. //token加密的key和iv
  10. 'aes_key' => 'bEJwbf2w8Abbhr1g',
  11. 'aes_iv' => 'sfX2ReOCcY22CEUF',
  12. 'wechat_small_program' => [
  13. 'app_id' => 'wxcb8cf16641d45bea',
  14. 'secret' => 'bec57a111c85846e245db4b88147581c',
  15. ],
  16. 'wechat_pay' => [
  17. 'app_id' => 'wxcb8cf16641d45bea',
  18. 'mch_id' => '1592541921',
  19. 'key' => 'weixinzhifujuyinzhengxin66666666',
  20. 'notify_url' => env('API_HOST', '').'/api/payCallback/wechatPayNotify'
  21. ],
  22. ];