services.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Third Party Services
  6. |--------------------------------------------------------------------------
  7. |
  8. | This file is for storing the credentials for third party services such
  9. | as Mailgun, SparkPost and others. This file provides a sane default
  10. | location for this type of information, allowing packages to have
  11. | a conventional file to locate the various service credentials.
  12. |
  13. */
  14. 'mailgun' => [
  15. 'domain' => env('MAILGUN_DOMAIN'),
  16. 'secret' => env('MAILGUN_SECRET'),
  17. 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
  18. ],
  19. 'postmark' => [
  20. 'token' => env('POSTMARK_TOKEN'),
  21. ],
  22. 'ses' => [
  23. 'key' => env('AWS_ACCESS_KEY_ID'),
  24. 'secret' => env('AWS_SECRET_ACCESS_KEY'),
  25. 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
  26. ],
  27. 'sparkpost' => [
  28. 'secret' => env('SPARKPOST_SECRET'),
  29. ],
  30. ];