2017-12-24 14:17:18 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Third Party Services
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This file is for storing the credentials for third party services such
|
|
|
|
| as Stripe, Mailgun, SparkPost and others. This file provides a sane
|
|
|
|
| default location for this type of information, allowing packages
|
|
|
|
| to have a conventional place to find your various credentials.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2018-01-01 13:22:16 +00:00
|
|
|
'baidu_translate' => [
|
|
|
|
'appid' => env('BAIDU_TRANSLATE_APPID'),
|
|
|
|
'key' => env('BAIDU_TRANSLATE_KEY'),
|
|
|
|
],
|
|
|
|
|
2017-12-24 14:17:18 +00:00
|
|
|
'mailgun' => [
|
|
|
|
'domain' => env('MAILGUN_DOMAIN'),
|
|
|
|
'secret' => env('MAILGUN_SECRET'),
|
|
|
|
],
|
|
|
|
|
|
|
|
'ses' => [
|
|
|
|
'key' => env('SES_KEY'),
|
|
|
|
'secret' => env('SES_SECRET'),
|
|
|
|
'region' => 'us-east-1',
|
|
|
|
],
|
|
|
|
|
|
|
|
'sparkpost' => [
|
|
|
|
'secret' => env('SPARKPOST_SECRET'),
|
|
|
|
],
|
|
|
|
|
|
|
|
'stripe' => [
|
2017-12-30 20:23:09 +00:00
|
|
|
'model' => App\Models\User::class,
|
2017-12-24 14:17:18 +00:00
|
|
|
'key' => env('STRIPE_KEY'),
|
|
|
|
'secret' => env('STRIPE_SECRET'),
|
|
|
|
],
|
|
|
|
|
2018-06-03 13:09:33 +00:00
|
|
|
'weixin' => [
|
|
|
|
'client_id' => env('WEIXIN_APPID'),
|
|
|
|
'client_secret' => env('WEIXIN_SECRET'),
|
|
|
|
'redirect' => env('WEIXIN_REDIRECT_URI'),
|
|
|
|
],
|
|
|
|
|
2017-12-24 14:17:18 +00:00
|
|
|
];
|