easywechat.php 572 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * easywechat 5.0 公共配置
  4. */
  5. return [
  6. 'response_type' => 'array',
  7. 'http' => [
  8. 'throw' => true, // 状态码非 200、300 时是否抛出异常,默认为开启
  9. 'timeout' => 5.0,
  10. 'retry' => true, // 使用默认重试配置
  11. ],
  12. 'log' => [
  13. 'default' => 'prod',
  14. 'channels' => [
  15. 'prod' => [
  16. 'driver' => 'daily',
  17. 'path' => storage_path('logs/easyWechat.log'),
  18. 'level' => env('EASY_WECHAT_LOG_LEVEL', 'debug'),
  19. ]
  20. ]
  21. ]
  22. ];