2015-12-06 19:58:49 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
2017-08-19 05:19:06 +02:00
|
|
|
| Third Party Service
|
2015-12-06 19:58:49 +01: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-16 02:20:36 +02:00
|
|
|
'endpoint' => env('MAILGUN_ENDPOINT'),
|
2015-12-06 19:58:49 +01:00
|
|
|
],
|
|
|
|
|
|
|
|
'mandrill' => [
|
|
|
|
'secret' => env('MANDRILL_SECRET'),
|
|
|
|
],
|
|
|
|
|
|
|
|
'ses' => [
|
2017-08-22 05:10:48 +02:00
|
|
|
'key' => env('SES_KEY'),
|
2015-12-06 19:58:49 +01:00
|
|
|
'secret' => env('SES_SECRET'),
|
|
|
|
'region' => 'us-east-1',
|
|
|
|
],
|
|
|
|
|
2017-04-01 23:59:43 +02:00
|
|
|
'sparkpost' => [
|
|
|
|
'secret' => env('SPARKPOST_SECRET'),
|
2015-12-06 19:58:49 +01:00
|
|
|
],
|
|
|
|
];
|