2023-03-17 14:33:48 +00:00
|
|
|
<?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' => [
|
|
|
|
|
'token' => env('POSTMARK_TOKEN'),
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'ses' => [
|
|
|
|
|
'key' => env('AWS_ACCESS_KEY_ID'),
|
|
|
|
|
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
|
|
|
|
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
|
|
|
|
],
|
2024-12-13 11:12:52 +00:00
|
|
|
|
2025-11-30 15:50:04 +00:00
|
|
|
'resend' => [
|
|
|
|
|
'key' => env('RESEND_KEY'),
|
2025-06-18 12:29:46 +00:00
|
|
|
],
|
|
|
|
|
|
2025-11-30 15:50:04 +00:00
|
|
|
'slack' => [
|
|
|
|
|
'notifications' => [
|
|
|
|
|
'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
|
|
|
|
|
'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
|
|
|
|
|
],
|
2025-02-17 00:44:22 +00:00
|
|
|
],
|
|
|
|
|
|
2025-06-18 12:35:54 +00:00
|
|
|
'zitadel' => [
|
|
|
|
|
'client_id' => env('ZITADEL_CLIENT_ID'),
|
|
|
|
|
'client_secret' => env('ZITADEL_CLIENT_SECRET'),
|
|
|
|
|
'redirect' => env('ZITADEL_REDIRECT_URI'),
|
|
|
|
|
'base_url' => env('ZITADEL_BASE_URL'),
|
2025-08-07 19:57:00 +00:00
|
|
|
],
|
2025-06-18 12:35:54 +00:00
|
|
|
|
2023-03-17 14:33:48 +00:00
|
|
|
];
|