mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 05:31:24 +00:00
* Move Mail, PDF configuration to Database, standardize configurations * Set default currency to USD on install * Pint code
48 lines
1.3 KiB
PHP
48 lines
1.3 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.
|
|
|
|
|
*/
|
|
|
|
'mailgun' => [
|
|
'domain' => env('MAILGUN_DOMAIN'),
|
|
'secret' => env('MAILGUN_SECRET'),
|
|
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
|
|
],
|
|
|
|
'sparkpost' => [
|
|
'secret' => env('SPARKPOST_SECRET'),
|
|
],
|
|
|
|
'sendgrid' => [
|
|
'api_key' => env('SENDGRID_API_KEY'),
|
|
],
|
|
|
|
'stripe' => [
|
|
'model' => \App\Models\User::class,
|
|
'key' => env('STRIPE_KEY'),
|
|
'secret' => env('STRIPE_SECRET'),
|
|
'webhook' => [
|
|
'secret' => env('STRIPE_WEBHOOK_SECRET'),
|
|
'tolerance' => env('STRIPE_WEBHOOK_TOLERANCE', 300),
|
|
],
|
|
],
|
|
|
|
'ses' => [
|
|
'key' => env('SES_KEY'),
|
|
'secret' => env('SES_SECRET'),
|
|
'region' => env('SES_REGION', 'us-east-1'),
|
|
],
|
|
|
|
];
|