Files
spa-api/config/services.php

38 lines
726 B
PHP
Raw Normal View History

2014-03-14 16:22:14 -05:00
<?php
2014-08-24 14:03:58 -05:00
return [
2014-03-14 16:22:03 -05:00
2014-03-14 18:59:40 -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.
|
*/
2014-08-24 14:03:58 -05:00
'mailgun' => [
'domain' => '',
2014-03-14 16:22:03 -05:00
'secret' => '',
2014-08-24 14:03:58 -05:00
],
2014-03-14 16:22:03 -05:00
2014-08-24 14:03:58 -05:00
'mandrill' => [
2014-03-14 16:22:03 -05:00
'secret' => '',
2014-08-24 14:03:58 -05:00
],
2014-03-14 16:22:03 -05:00
2014-11-19 23:36:45 -06:00
'ses' => [
'key' => '',
'secret' => '',
'region' => 'us-east-1',
],
2014-08-24 14:03:58 -05:00
'stripe' => [
2014-03-14 16:22:03 -05:00
'model' => 'User',
'secret' => '',
2014-08-24 14:03:58 -05:00
],
2014-03-14 16:22:03 -05:00
2014-08-24 14:03:58 -05:00
];