2024-04-22 11:14:05 +00:00
|
|
|
<?php
|
2024-05-10 16:01:21 +00:00
|
|
|
use App\PhyreConfig;
|
2024-04-22 11:14:05 +00:00
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Third Party Services
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This file is for storing the credentials for third party services such
|
|
|
|
| as Mailgun, Postmark, AWS and more. This file provides the de facto
|
|
|
|
| location for this type of information, allowing packages to have
|
|
|
|
| a conventional file to locate the various service credentials.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'mailgun' => [
|
2024-05-10 16:01:21 +00:00
|
|
|
'domain' => PhyreConfig::get('MAILGUN_DOMAIN'),
|
|
|
|
'secret' => PhyreConfig::get('MAILGUN_SECRET'),
|
|
|
|
'endpoint' => PhyreConfig::get('MAILGUN_ENDPOINT', 'api.mailgun.net'),
|
2024-04-22 11:14:05 +00:00
|
|
|
'scheme' => 'https',
|
|
|
|
],
|
|
|
|
|
|
|
|
'postmark' => [
|
2024-05-10 16:01:21 +00:00
|
|
|
'token' => PhyreConfig::get('POSTMARK_TOKEN'),
|
2024-04-22 11:14:05 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
'ses' => [
|
2024-05-10 16:01:21 +00:00
|
|
|
'key' => PhyreConfig::get('AWS_ACCESS_KEY_ID'),
|
|
|
|
'secret' => PhyreConfig::get('AWS_SECRET_ACCESS_KEY'),
|
|
|
|
'region' => PhyreConfig::get('AWS_DEFAULT_REGION', 'us-east-1'),
|
2024-04-22 11:14:05 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
];
|