services.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. ],
  19. 'ses' => [
  20. 'key' => env('SES_KEY'),
  21. 'secret' => env('SES_SECRET'),
  22. 'region' => env('SES_REGION', 'us-east-1'),
  23. ],
  24. 'sparkpost' => [
  25. 'secret' => env('SPARKPOST_SECRET'),
  26. ],
  27. 'stripe' => [
  28. 'model' => App\User::class,
  29. 'key' => env('STRIPE_KEY'),
  30. 'secret' => env('STRIPE_SECRET'),
  31. 'webhook' => [
  32. 'secret' => env('STRIPE_WEBHOOK_SECRET'),
  33. 'tolerance' => env('STRIPE_WEBHOOK_TOLERANCE', 300),
  34. ],
  35. ],
  36. ];