Cachet/config/services.php

50 lines
1.2 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-11-28 17:35:49 +00:00
'github' => [
'token' => env('GITHUB_TOKEN'),
],
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
2016-03-24 15:26:04 +00:00
'sparkpost' => [
'secret' => env('SPARKPOST_SECRET'),
],
2015-03-20 18:30:45 -06:00
];