Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
979 B
PHP
Raw Permalink Normal View History

2018-05-09 08:05:17 -05:00
<?php
2023-04-17 13:51:35 +02:00
return [
2019-02-14 08:08:38 -06:00
2023-04-17 13:51:35 +02:00
/*
2023-05-24 22:21:54 +02:00
|--------------------------------------------------------------------------
| 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.
|
*/
2018-05-09 08:05:17 -05:00
2023-04-17 13:51:35 +02:00
'mailgun' => [
'domain' => env('MAILGUN_DOMAIN'),
'secret' => env('MAILGUN_SECRET'),
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
'scheme' => 'https',
],
2018-05-09 08:05:17 -05:00
2023-04-17 13:51:35 +02:00
'postmark' => [
'token' => env('POSTMARK_TOKEN'),
],
2023-04-17 13:51:35 +02:00
'ses' => [
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
],
2018-05-09 08:05:17 -05:00
2023-04-17 13:51:35 +02:00
];