services.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 Stripe, Mailgun, SparkPost and others. This file provides a sane
  10. | default location for this type of information, allowing packages
  11. | to have a conventional place to find your various credentials.
  12. |
  13. */
  14. 'mailgun' => [
  15. 'domain' => env('MAILGUN_DOMAIN'),
  16. 'secret' => env('MAILGUN_SECRET'),
  17. 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
  18. 'scheme' => 'https',
  19. ],
  20. 'ses' => [
  21. 'key' => env('SES_KEY'),
  22. 'secret' => env('SES_SECRET'),
  23. 'region' => env('SES_REGION', 'us-east-1'),
  24. ],
  25. 'sparkpost' => [
  26. 'secret' => env('SPARKPOST_SECRET'),
  27. ],
  28. 'stripe' => [
  29. 'model' => App\User::class,
  30. 'key' => env('STRIPE_KEY'),
  31. 'secret' => env('STRIPE_SECRET'),
  32. ],
  33. 'expo' => [
  34. 'access_token' => env('EXPO_ACCESS_TOKEN'),
  35. ],
  36. 'resend' => [
  37. 'key' => env('RESEND_KEY'),
  38. ],
  39. ];