services.php 651 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. return array(
  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' => array(
  15. 'secret' => '',
  16. ),
  17. 'mandrill' => array(
  18. 'secret' => '',
  19. ),
  20. 'stripe' => array(
  21. 'model' => 'User',
  22. 'secret' => '',
  23. ),
  24. );