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
|
|
|
|
| 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.
|
|
|
|
|
|
|
|
|
*/
|
2015-03-20 18:30:45 -06:00
|
|
|
|
2015-03-20 18:32:24 -06:00
|
|
|
'mailgun' => [
|
2015-10-30 18:24:15 +00:00
|
|
|
'domain' => env('MAILGUN_DOMAIN'),
|
|
|
|
'secret' => env('MAILGUN_SECRET'),
|
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' => [
|
2015-10-30 18:24:15 +00:00
|
|
|
'secret' => env('MANDRILL_SECRET'),
|
2015-03-20 18:32:24 -06:00
|
|
|
],
|
2015-03-20 18:30:45 -06:00
|
|
|
|
2015-03-20 18:32:24 -06:00
|
|
|
'ses' => [
|
2015-10-30 18:24:15 +00:00
|
|
|
'key' => env('SES_KEY'),
|
|
|
|
'secret' => env('SES_SECRET'),
|
2015-03-20 18:32:24 -06:00
|
|
|
'region' => 'us-east-1',
|
|
|
|
],
|
2015-03-20 18:30:45 -06:00
|
|
|
|
2015-03-20 18:32:24 -06:00
|
|
|
'stripe' => [
|
2015-05-28 15:05:35 +01:00
|
|
|
'model' => 'CachetHQ\Cachet\Models\User',
|
2015-10-30 18:24:15 +00:00
|
|
|
'key' => env('STRIPE_KEY'),
|
|
|
|
'secret' => env('STRIPE_SECRET'),
|
2015-03-20 18:32:24 -06:00
|
|
|
],
|
2015-03-20 18:30:45 -06:00
|
|
|
|
|
|
|
];
|