wechat.php 889 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /*
  3. * This file is part of the overtrue/laravel-wechat.
  4. *
  5. * (c) overtrue <i@overtrue.me>
  6. *
  7. * This source file is subject to the MIT license that is bundled
  8. * with this source code in the file LICENSE.
  9. */
  10. return [
  11. //微信公众号配置
  12. 'log' => [
  13. 'default' => 'dev', // 默认使用的 channel,生产环境可以改为下面的 prod
  14. 'channels' => [
  15. // 测试环境
  16. 'dev' => [
  17. 'driver' => 'daily',
  18. 'path' => storage_path('logs/official/easywechat.log'),
  19. 'level' => 'debug',
  20. 'days' =>30
  21. ],
  22. // 生产环境
  23. 'prod' => [
  24. 'driver' => 'daily',
  25. 'path' => storage_path('logs/official/easywechat.log'),
  26. 'level' => 'debug',
  27. 'days' =>30
  28. ],
  29. ],
  30. ]
  31. ];