services.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | LARAVEL8.0 框架 [ LARAVEL ][ RXThinkCMF ]
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2017~2021 LARAVEL研发中心
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://www.laravel.cn
  8. // +----------------------------------------------------------------------
  9. // | Author: laravel开发员 <laravel.qq.com>
  10. // +----------------------------------------------------------------------
  11. return [
  12. /*
  13. |--------------------------------------------------------------------------
  14. | Third Party Services
  15. |--------------------------------------------------------------------------
  16. |
  17. | This file is for storing the credentials for third party services such
  18. | as Mailgun, Postmark, AWS and more. This file provides the de facto
  19. | location for this type of information, allowing packages to have
  20. | a conventional file to locate the various service credentials.
  21. |
  22. */
  23. 'mailgun' => [
  24. 'domain' => env('MAILGUN_DOMAIN'),
  25. 'secret' => env('MAILGUN_SECRET'),
  26. 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
  27. ],
  28. 'postmark' => [
  29. 'token' => env('POSTMARK_TOKEN'),
  30. ],
  31. 'ses' => [
  32. 'key' => env('AWS_ACCESS_KEY_ID'),
  33. 'secret' => env('AWS_SECRET_ACCESS_KEY'),
  34. 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
  35. ],
  36. ];