2014-03-14 16:22:14 -05:00
|
|
|
<?php
|
|
|
|
|
|
2014-08-24 14:03:58 -05:00
|
|
|
return [
|
2014-03-14 16:22:03 -05:00
|
|
|
|
2014-03-14 18:59:40 -05:00
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Third Party Services
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
| This file is for storing the credentials for third party services such
|
|
|
|
|
| as Stripe, Mailgun, Mandrill, and others. This file provides a sane
|
|
|
|
|
| default location for this type of information, allowing packages
|
|
|
|
|
| to have a conventional place to find your various credentials.
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
2014-08-24 14:03:58 -05:00
|
|
|
'mailgun' => [
|
2014-05-04 10:31:36 +08:00
|
|
|
'domain' => '',
|
2014-03-14 16:22:03 -05:00
|
|
|
'secret' => '',
|
2014-08-24 14:03:58 -05:00
|
|
|
],
|
2014-03-14 16:22:03 -05:00
|
|
|
|
2014-08-24 14:03:58 -05:00
|
|
|
'mandrill' => [
|
2014-03-14 16:22:03 -05:00
|
|
|
'secret' => '',
|
2014-08-24 14:03:58 -05:00
|
|
|
],
|
2014-03-14 16:22:03 -05:00
|
|
|
|
2014-11-19 23:36:45 -06:00
|
|
|
'ses' => [
|
|
|
|
|
'key' => '',
|
|
|
|
|
'secret' => '',
|
|
|
|
|
'region' => 'us-east-1',
|
|
|
|
|
],
|
|
|
|
|
|
2014-08-24 14:03:58 -05:00
|
|
|
'stripe' => [
|
2015-03-24 17:53:24 +11:00
|
|
|
'model' => 'App\User',
|
2015-04-01 09:08:53 -05:00
|
|
|
'key' => '',
|
2014-03-14 16:22:03 -05:00
|
|
|
'secret' => '',
|
2014-08-24 14:03:58 -05:00
|
|
|
],
|
2014-03-14 16:22:03 -05:00
|
|
|
|
2014-08-24 14:03:58 -05:00
|
|
|
];
|