68 lines
2.0 KiB
PHP
68 lines
2.0 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'),
|
|
],
|
|
|
|
'expo' => [
|
|
'access_token' => env('EXPO_ACCESS_TOKEN'),
|
|
],
|
|
|
|
'google' => [
|
|
'client_id' => env('GOOGLE_CLIENT_ID'),
|
|
'client_secret' => env('GOOGLE_CLIENT_SECRET', ''),
|
|
'redirect' => env('GOOGLE_REDIRECT_URI', ''),
|
|
],
|
|
|
|
'apple' => [
|
|
'client_id' => env('APPLE_CLIENT_ID'),
|
|
'client_ids' => env('APPLE_CLIENT_IDS') ?: env('APPLE_CLIENT_ID'),
|
|
'issuer' => 'https://appleid.apple.com',
|
|
'jwks_url' => 'https://appleid.apple.com/auth/keys',
|
|
'key_id' => env('APPLE_KEY_ID'),
|
|
'private_key' => env('APPLE_PRIVATE_KEY'),
|
|
'private_key_base64' => env('APPLE_PRIVATE_KEY_BASE64'),
|
|
'revoke_url' => 'https://appleid.apple.com/auth/revoke',
|
|
'team_id' => env('APPLE_TEAM_ID'),
|
|
'token_url' => 'https://appleid.apple.com/auth/token',
|
|
],
|
|
|
|
'strava' => [
|
|
'client_id' => env('STRAVA_CLIENT_ID'),
|
|
'client_secret' => env('STRAVA_CLIENT_SECRET'),
|
|
'scope' => env('STRAVA_SCOPE', 'read,activity:read'),
|
|
],
|
|
|
|
'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'),
|
|
],
|
|
],
|
|
|
|
];
|