1
|
<?php
|
2
|
|
3
|
return [
|
4
|
|
5
|
/*
|
6
|
|--------------------------------------------------------------------------
|
7
|
| Third Party Services
|
8
|
|--------------------------------------------------------------------------
|
9
|
|
|
10
|
| This file is for storing the credentials for third party services such
|
11
|
| as Mailgun, Postmark, AWS and more. This file provides the de facto
|
12
|
| location for this type of information, allowing packages to have
|
13
|
| a conventional file to locate the various service credentials.
|
14
|
|
|
15
|
*/
|
16
|
|
17
|
'mailgun' => [
|
18
|
'domain' => env('MAILGUN_DOMAIN'),
|
19
|
'secret' => env('MAILGUN_SECRET'),
|
20
|
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
|
21
|
],
|
22
|
|
23
|
'postmark' => [
|
24
|
'token' => env('POSTMARK_TOKEN'),
|
25
|
],
|
26
|
|
27
|
'ses' => [
|
28
|
'key' => env('AWS_ACCESS_KEY_ID'),
|
29
|
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
30
|
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
31
|
],
|
32
|
|
33
|
];
|