firefly-iii/config/services.php

39 lines
987 B
PHP
Raw Normal View History

2015-02-05 21:39:52 -06:00
<?php
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' => [
2016-09-15 23:19:40 -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' => [
2016-09-15 23:19:40 -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
];