63 lines
1.7 KiB
PHP
63 lines
1.7 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' => [
|
|
'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'),
|
|
],
|
|
],
|
|
|
|
'gemini' => [
|
|
'key' => env('GEMINI_API_KEY'),
|
|
],
|
|
|
|
'unsplash' => [
|
|
'access_key' => env('UNSPLASH_ACCESS_KEY'),
|
|
],
|
|
|
|
'spotify' => [
|
|
'client_id' => env('SPOTIFY_CLIENT_ID'),
|
|
'client_secret' => env('SPOTIFY_CLIENT_SECRET'),
|
|
'artist_id' => env('SPOTIFY_ARTIST_ID'),
|
|
'market' => env('SPOTIFY_MARKET', 'TR'),
|
|
],
|
|
|
|
'youtube' => [
|
|
'api_key' => env('YOUTUBE_API_KEY'),
|
|
'channel_id' => env('YOUTUBE_CHANNEL_ID'),
|
|
'topic_channel_id' => env('YOUTUBE_TOPIC_CHANNEL_ID'),
|
|
'playlist_id' => env('YOUTUBE_PLAYLIST_ID'),
|
|
'api_referer' => env('YOUTUBE_API_REFERER'),
|
|
'distributor_filter' => env('YOUTUBE_DISTRIBUTOR_FILTER'),
|
|
],
|
|
|
|
];
|