1
0
cms11/config/services.php

44 lines
1.2 KiB
PHP
Raw Normal View History

2024-04-16 15:55:47 +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.
|
*/
2024-04-18 01:52:40 +02:00
'rebrickable' => [
'baseUrl' => 'https://rebrickable.com/api/v3/lego',
'key' => env('REBRICKABLE_API_KEY'),
],
2024-04-19 11:21:33 +02:00
'wikidata' => [
'baseApiUrl' => 'https://www.wikidata.org/w/api.php',
],
2024-04-16 15:55:47 +02:00
'postmark' => [
'token' => env('POSTMARK_TOKEN'),
],
'ses' => [
2024-04-16 17:14:38 +02:00
'key' => env('AWS_ACCESS_KEY_ID'),
2024-04-16 15:55:47 +02:00
'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'),
2024-04-16 17:14:38 +02:00
'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
2024-04-16 15:55:47 +02:00
],
],
];