2016-02-29 15:59:36 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
2016-03-07 17:37:16 +00:00
|
|
|
/*
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Third Party Services
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
| This file is for storing the credentials for third party services such
|
|
|
|
|
| as Stripe, Mailgun, Mandrill, 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.
|
|
|
|
|
|
|
|
|
|
|
*/
|
2016-02-29 15:59:36 +00:00
|
|
|
|
2016-03-07 17:37:16 +00:00
|
|
|
'mailgun' => [
|
2016-09-07 20:57:21 +00:00
|
|
|
'domain' => env('MAILGUN_DOMAIN'),
|
|
|
|
|
'secret' => env('MAILGUN_SECRET'),
|
2016-03-07 17:37:16 +00:00
|
|
|
],
|
2016-02-29 15:59:36 +00:00
|
|
|
|
2016-03-07 17:37:16 +00:00
|
|
|
'mandrill' => [
|
|
|
|
|
'secret' => '',
|
|
|
|
|
],
|
2016-02-29 15:59:36 +00:00
|
|
|
|
2016-03-07 17:37:16 +00:00
|
|
|
'ses' => [
|
|
|
|
|
'key' => '',
|
|
|
|
|
'secret' => '',
|
|
|
|
|
'region' => 'us-east-1',
|
|
|
|
|
],
|
2016-02-29 15:59:36 +00:00
|
|
|
|
2016-03-07 17:37:16 +00:00
|
|
|
'stripe' => [
|
|
|
|
|
'model' => 'User',
|
|
|
|
|
'secret' => '',
|
|
|
|
|
],
|
2016-02-29 15:59:36 +00:00
|
|
|
|
2016-03-21 19:10:40 +00:00
|
|
|
'twitter' => [
|
|
|
|
|
'widget_id' => env('TWITTER_WIDGET_ID'),
|
2016-06-14 11:50:08 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
|
|
'sparkpost' => [
|
|
|
|
|
'secret' => env('SPARKPOST_SECRET')
|
2019-11-02 10:32:23 +00:00
|
|
|
],
|
|
|
|
|
'google_places' => [
|
|
|
|
|
'key' => env('GOOGLE_MAPS_GEOCODING_KEY')
|
|
|
|
|
],
|
2016-02-29 15:59:36 +00:00
|
|
|
];
|