52 lines
1.5 KiB
PHP
52 lines
1.5 KiB
PHP
<?php
|
|
|
|
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.
|
|
|
|
|
*/
|
|
|
|
'postmark' => [
|
|
'key' => env('POSTMARK_API_KEY'),
|
|
],
|
|
|
|
'resend' => [
|
|
'key' => env('RESEND_API_KEY'),
|
|
'leads_segment_id' => env('RESEND_LEADS_SEGMENT_ID'),
|
|
],
|
|
|
|
'ses' => [
|
|
'key' => env('AWS_ACCESS_KEY_ID'),
|
|
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
|
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
|
'token' => env('AWS_SESSION_TOKEN'),
|
|
],
|
|
|
|
'slack' => [
|
|
'notifications' => [
|
|
'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
|
|
'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
|
|
],
|
|
],
|
|
|
|
'enablebanking' => [
|
|
'app_id' => env('ENABLEBANKING_APP_ID'),
|
|
'private_key_path' => env('ENABLEBANKING_PRIVATE_KEY_PATH'),
|
|
'redirect_url' => env('ENABLEBANKING_REDIRECT_URL'),
|
|
],
|
|
|
|
'discord' => [
|
|
'webhook_url' => env('DISCORD_WEBHOOK_URL'),
|
|
'ai_cohort_webhook_url' => env('DISCORD_AI_COHORT_WEBHOOK_URL'),
|
|
],
|
|
|
|
];
|