generated from boboko/starter
57 lines
1.7 KiB
PHP
57 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' => [
|
|
'key' => env('POSTMARK_API_KEY'),
|
|
],
|
|
|
|
'resend' => [
|
|
'key' => env('RESEND_API_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'),
|
|
],
|
|
],
|
|
|
|
'stoic' => [
|
|
'sso_secret' => env('STOIC_SSO_SECRET'),
|
|
'host' => env('STOIC_HOST'),
|
|
],
|
|
|
|
// Keys read by lunarphp/stripe + Modules\Core\Payment\Drivers\StripePaymentDriver.
|
|
// `key` is the SECRET key (this ecosystem's convention — StripeManager calls
|
|
// Stripe::setApiKey(config('services.stripe.key'))); `public_key` is the
|
|
// publishable key for Stripe.js; `webhooks.lunar` is the signing secret the
|
|
// webhook route verifies against.
|
|
'stripe' => [
|
|
'key' => env('STRIPE_SECRET'),
|
|
'public_key' => env('STRIPE_PUBLIC_KEY'),
|
|
'webhooks' => [
|
|
'lunar' => env('STRIPE_WEBHOOK_SECRET'),
|
|
],
|
|
],
|
|
|
|
];
|