firefly-iii/config/services.php

48 lines
1.2 KiB
PHP
Raw Normal View History

2015-02-05 21:39:52 -06:00
<?php
/**
* services.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
2015-02-05 21:39:52 -06:00
return [
2015-06-27 01:06:24 -05:00
/*
|--------------------------------------------------------------------------
| Third Party Services
|--------------------------------------------------------------------------
|
| This file is for storing the credentials for third party services such
2016-09-15 23:19:40 -05:00
| as Stripe, Mailgun, SparkPost and others. This file provides a sane
2015-06-27 01:06:24 -05:00
| default location for this type of information, allowing packages
| to have a conventional place to find your various credentials.
|
*/
2015-02-05 21:39:52 -06:00
'mailgun' => [
'domain' => env('MAILGUN_DOMAIN'),
'secret' => env('MAILGUN_SECRET'),
2015-06-27 01:06:24 -05:00
],
2015-02-05 21:39:52 -06:00
'ses' => [
2017-04-09 00:56:46 -05:00
'key' => env('SES_KEY'),
'secret' => env('SES_SECRET'),
2015-06-27 01:06:24 -05:00
'region' => 'us-east-1',
],
2015-02-05 21:39:52 -06:00
2016-09-15 23:19:40 -05:00
'sparkpost' => [
'secret' => env('SPARKPOST_SECRET'),
],
'stripe' => [
2017-04-09 00:56:46 -05:00
'model' => FireflyIII\User::class,
'key' => env('STRIPE_KEY'),
'secret' => env('STRIPE_SECRET'),
2015-06-27 01:06:24 -05:00
],
2015-02-05 21:39:52 -06:00
];