|
0
|
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 'postmark' => [
|
|
|
18 'token' => env('POSTMARK_TOKEN'),
|
|
|
19 ],
|
|
|
20
|
|
|
21 'resend' => [
|
|
|
22 'key' => env('RESEND_KEY'),
|
|
|
23 ],
|
|
|
24
|
|
|
25 'ses' => [
|
|
|
26 'key' => env('AWS_ACCESS_KEY_ID'),
|
|
|
27 'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
|
|
28 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
|
|
29 ],
|
|
|
30
|
|
|
31 'slack' => [
|
|
|
32 'notifications' => [
|
|
|
33 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
|
|
|
34 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
|
|
|
35 ],
|
|
|
36 ],
|
|
|
37
|
|
|
38 ];
|