2015-03-20 18:30:45 -06:00
|
|
|
<?php
|
|
|
|
|
2015-04-19 08:52:39 +01:00
|
|
|
/*
|
|
|
|
* This file is part of Cachet.
|
|
|
|
*
|
2015-07-06 17:37:01 +01:00
|
|
|
* (c) Alt Three Services Limited
|
2015-04-19 08:52:39 +01:00
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
2015-03-20 18:30:45 -06:00
|
|
|
return [
|
|
|
|
|
2015-03-20 18:32:24 -06:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Third Party Services
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This file is for storing the credentials for third party services such
|
2016-10-19 12:28:39 +01:00
|
|
|
| as Stripe, Mailgun, SparkPost and others. This file provides a sane
|
2015-03-20 18:32:24 -06:00
|
|
|
| default location for this type of information, allowing packages
|
|
|
|
| to have a conventional place to find your various credentials.
|
|
|
|
|
|
|
|
|
*/
|
2015-03-20 18:30:45 -06:00
|
|
|
|
2015-11-28 17:35:49 +00:00
|
|
|
'github' => [
|
|
|
|
'token' => env('GITHUB_TOKEN'),
|
|
|
|
],
|
|
|
|
|
2015-03-20 18:32:24 -06:00
|
|
|
'mailgun' => [
|
2016-06-03 01:26:28 -05:00
|
|
|
'domain' => env('MAIL_USERNAME'),
|
|
|
|
'secret' => env('MAIL_PASSWORD'),
|
2015-03-20 18:32:24 -06:00
|
|
|
],
|
2015-03-20 18:30:45 -06:00
|
|
|
|
2015-03-20 18:32:24 -06:00
|
|
|
'mandrill' => [
|
2016-06-03 01:26:28 -05:00
|
|
|
'secret' => env('MAIL_PASSWORD'),
|
2015-03-20 18:32:24 -06:00
|
|
|
],
|
2015-03-20 18:30:45 -06:00
|
|
|
|
2016-12-29 14:01:09 +00:00
|
|
|
'nexmo' => [
|
|
|
|
'key' => env('NEXMO_KEY'),
|
|
|
|
'secret' => env('NEXMO_SECRET'),
|
|
|
|
'sms_from' => env('NEXMO_SMS_FROM'),
|
|
|
|
],
|
|
|
|
|
2015-03-20 18:32:24 -06:00
|
|
|
'ses' => [
|
2016-06-03 01:26:28 -05:00
|
|
|
'key' => env('MAIL_USERNAME'),
|
|
|
|
'secret' => env('MAIL_PASSWORD'),
|
2018-03-17 12:57:37 +00:00
|
|
|
'region' => env('SES_REGION', 'us-east-1'),
|
2015-03-20 18:32:24 -06:00
|
|
|
],
|
2015-03-20 18:30:45 -06:00
|
|
|
|
2016-03-24 15:26:04 +00:00
|
|
|
'sparkpost' => [
|
2016-06-03 01:26:28 -05:00
|
|
|
'secret' => env('MAIL_PASSWORD'),
|
2016-03-24 15:26:04 +00:00
|
|
|
],
|
|
|
|
|
2015-03-20 18:30:45 -06:00
|
|
|
];
|