2024-08-01 13:53:10 -05: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'),
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'resend' => [
|
|
|
|
|
'key' => env('RESEND_KEY'),
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'slack' => [
|
|
|
|
|
'notifications' => [
|
|
|
|
|
'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
|
|
|
|
|
'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
|
2024-10-19 23:11:04 -05:00
|
|
|
'github' => [
|
|
|
|
|
'client_id' => env('GITHUB_CLIENT_ID'),
|
|
|
|
|
'client_secret' => env('GITHUB_CLIENT_SECRET'),
|
|
|
|
|
'redirect' => '/auth/github/callback',
|
|
|
|
|
'logo' => 'github-icon',
|
|
|
|
|
'color' => '#393939',
|
|
|
|
|
'name' => 'GitHub'
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'google' => [
|
|
|
|
|
'client_id' => env('GOOGLE_CLIENT_ID'),
|
|
|
|
|
'client_secret' => env('GOOGLE_CLIENT_SECRET'),
|
|
|
|
|
'redirect' => '/auth/google/callback',
|
|
|
|
|
'color' => '#4285F4',
|
|
|
|
|
'name' => 'Google'
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'facebook' => [
|
|
|
|
|
'client_id' => env('FACEBOOK_CLIENT_ID'),
|
|
|
|
|
'client_secret' => env('FACEBOOK_CLIENT_SECRET'),
|
|
|
|
|
'redirect' => '/auth/facebook/callback',
|
|
|
|
|
'color' => '#0165E1',
|
|
|
|
|
'name' => 'Facebook'
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'linkedin-openid' => [
|
|
|
|
|
'client_id' => env('LINKEDIN_CLIENT_ID'),
|
|
|
|
|
'client_secret' => env('LINKEDIN_CLIENT_SECRET'),
|
|
|
|
|
'redirect' => '/auth/linkedin-openid/callback',
|
|
|
|
|
'color' => '#0a66c2',
|
|
|
|
|
'name' => 'Linkedin'
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'enabled_login_providers' => env('ENABLED_LOGIN_PROVIDERS', [])
|
2024-08-01 13:53:10 -05:00
|
|
|
];
|