Cachet/config/services.php

48 lines
1.1 KiB
PHP
Raw Normal View History

2015-03-20 18:30:45 -06:00
<?php
/*
* This file is part of Cachet.
*
2015-07-06 17:37:01 +01:00
* (c) Alt Three Services Limited
*
* 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' => [
'domain' => '',
'secret' => '',
],
2015-03-20 18:30:45 -06:00
2015-03-20 18:32:24 -06:00
'mandrill' => [
'secret' => '',
],
2015-03-20 18:30:45 -06:00
2015-03-20 18:32:24 -06:00
'ses' => [
'key' => '',
'secret' => '',
'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',
'key' => '',
2015-03-20 18:32:24 -06:00
'secret' => '',
],
2015-03-20 18:30:45 -06:00
];