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.

services.php 730B

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 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',
  28. 'secret' => '',
  29. ],
  30. ];