You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.7 KiB

1 month ago
  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, Postmark, AWS and more. This file provides the de facto
  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. 'google' => [
  28. 'client_id' => env('GOOGLE_CLIENT_ID'),
  29. 'client_secret' => env('GOOGLE_CLIENT_SECRET'),
  30. 'redirect' => env('GOOGLE_REDIRECT_URI')
  31. ],
  32. 'facebook' => [
  33. 'client_id' => env('FACEBOOK_CLIENT_ID'),
  34. 'client_secret' => env('FACEBOOK_CLIENT_SECRET'),
  35. 'redirect' => env('FACEBOOK_REDIRECT_URI')
  36. ],
  37. 'twilio' => [
  38. 'account_sid' => env('TWILIO_ACCOUNT_SID'),
  39. 'auth_token' => env('TWILIO_AUTH_TOKEN'),
  40. 'verification_sid' => env('TWILIO_VERIFICATION_SID'),
  41. 'from' => env('TWILIO_FROM_NUMBER'),
  42. ],
  43. 'messagebird' => [
  44. 'api_key' => env('MESSAGEBIRD_API_KEY'),
  45. 'originator' => env('MESSAGEBIRD_ORIGINATOR')
  46. ]
  47. ];