2017-08-27 04:44:53 +09:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Third Party Services
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This file is for storing the credentials for third party services such
|
2020-05-23 22:17:07 +09:00
|
|
|
| as Mailgun, SparkPost and others. This file provides a sane default
|
|
|
|
| location for this type of information, allowing packages to have
|
|
|
|
| a conventional file to locate the various service credentials.
|
2017-08-27 04:44:53 +09:00
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'mailgun' => [
|
|
|
|
'domain' => env('MAILGUN_DOMAIN'),
|
|
|
|
'secret' => env('MAILGUN_SECRET'),
|
2020-05-23 21:34:49 +09:00
|
|
|
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
|
2017-08-27 04:44:53 +09:00
|
|
|
],
|
|
|
|
|
2020-05-23 22:17:07 +09:00
|
|
|
'postmark' => [
|
|
|
|
'token' => env('POSTMARK_TOKEN'),
|
|
|
|
],
|
|
|
|
|
2017-08-27 04:44:53 +09:00
|
|
|
'ses' => [
|
2020-05-23 22:17:07 +09:00
|
|
|
'key' => env('AWS_ACCESS_KEY_ID'),
|
|
|
|
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
|
|
|
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
2017-08-27 04:44:53 +09:00
|
|
|
],
|
|
|
|
|
|
|
|
];
|