services.php 867 B

1234567891011121314151617181920212223242526272829303132333435363738
  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, Mandrill, 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' => '',
  16. 'secret' => '',
  17. ],
  18. 'mandrill' => [
  19. 'secret' => '',
  20. ],
  21. 'ses' => [
  22. 'key' => '',
  23. 'secret' => '',
  24. 'region' => 'us-east-1',
  25. ],
  26. 'stripe' => [
  27. 'model' => App\User::class,
  28. 'key' => '',
  29. 'secret' => '',
  30. ],
  31. ];