Sync services.php with upstream repo

https://raw.githubusercontent.com/laravel/laravel/5.4/config/services.php
This commit is contained in:
arubacao 2019-07-01 17:08:27 +02:00 committed by GitHub
parent 3a45a48a1a
commit 36ab20ae3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,27 +17,28 @@ return [
'postmark' => env('POSTMARK_API_TOKEN', ''),
'mailgun' => [
'domain' => env('MAILGUN_DOMAIN',''),
'secret' => env('MAILGUN_SECRET',''),
'domain' => env('MAILGUN_DOMAIN'),
'secret' => env('MAILGUN_SECRET'),
],
'mandrill' => [
'secret' => '',
],
'sparkpost' => [
'secret' => env('SPARKPOST_API_KEY'),
'ses' => [
'key' => env('SES_KEY'),
'secret' => env('SES_SECRET'),
'region' => env('SES_DEFAULT_REGION', 'us-east-1'),
],
'ses' => [
'key' => '',
'secret' => '',
'region' => 'us-east-1',
'sparkpost' => [
'secret' => env('SPARKPOST_SECRET'),
],
'stripe' => [
'model' => 'User',
'secret' => '',
'model' => App\User::class,
'key' => env('STRIPE_KEY'),
'secret' => env('STRIPE_SECRET'),
],
'github' => [