2015-12-06 13:58:49 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
2017-08-18 22:19:06 -05:00
|
|
|
| Third Party Service
|
2015-12-06 13:58:49 -05:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| 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.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'mailgun' => [
|
|
|
|
'domain' => env('MAILGUN_DOMAIN'),
|
|
|
|
'secret' => env('MAILGUN_SECRET'),
|
2021-08-15 17:20:36 -07:00
|
|
|
'endpoint' => env('MAILGUN_ENDPOINT'),
|
2015-12-06 13:58:49 -05:00
|
|
|
],
|
|
|
|
|
|
|
|
'mandrill' => [
|
|
|
|
'secret' => env('MANDRILL_SECRET'),
|
|
|
|
],
|
|
|
|
|
|
|
|
'ses' => [
|
2017-08-21 22:10:48 -05:00
|
|
|
'key' => env('SES_KEY'),
|
2015-12-06 13:58:49 -05:00
|
|
|
'secret' => env('SES_SECRET'),
|
|
|
|
'region' => 'us-east-1',
|
|
|
|
],
|
|
|
|
|
2017-04-01 17:59:43 -04:00
|
|
|
'sparkpost' => [
|
|
|
|
'secret' => env('SPARKPOST_SECRET'),
|
2015-12-06 13:58:49 -05:00
|
|
|
],
|
|
|
|
];
|