firefly-iii/config/services.php

39 lines
992 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
| 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-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
2015-06-27 01:06:24 -05:00
'mandrill' => [
'secret' => env('MANDRILL_SECRET'),
2015-06-27 01:06:24 -05:00
],
2015-02-05 21:39:52 -06:00
'ses' => [
'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
'stripe' => [
'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
];