Files
roxane/config/services.php

59 lines
1.6 KiB
PHP
Raw Permalink Normal View History

2025-10-22 17:09:48 +02: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'),
],
'resend' => [
'key' => env('RESEND_KEY'),
],
'ses' => [
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
],
'slack' => [
'notifications' => [
'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
],
],
'dolibarr' => [
'base_url' => env('DOLIBARR_URL'),
'username' => env('DOLIBARR_USERNAME'),
'password' => env('DOLIBARR_PWD'),
'api_key' => env('DOLIBARR_APIKEY')
],
'ispconfig' => [
'hosting' => [
'base_url' => env('HOSTING_ISPAPI_URL'),
'username' => env('HOSTING_ISPAPI_USERNAME'),
'password' => env('HOSTING_ISPAPI_PWD'),
],
'mailbox' => [
'base_url' => env('MAIL_ISPAPI_URL'),
'username' => env('MAIL_ISPAPI_USERNAME'),
'password' => env('MAIL_ISPAPI_PWD'),
]
]
2025-10-22 17:09:48 +02:00
];