Cachet/config/services.php

49 lines
1.1 KiB
PHP
Raw Normal View History

2015-03-20 18:30:45 -06:00
<?php
/*
* This file is part of Cachet.
*
* (c) James Brooks <james@cachethq.io>
* (c) Joseph Cohen <joseph.cohen@dinkbit.com>
* (c) Graham Campbell <graham@mineuk.com>
*
* 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' => [
'model' => 'User',
'secret' => '',
],
2015-03-20 18:30:45 -06:00
];