Files
spa-api/app/config/services.php

32 lines
669 B
PHP
Raw Normal View History

2014-03-14 16:22:14 -05:00
<?php
return array(
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-03-14 16:22:03 -05:00
'mailgun' => array(
'domain' => '',
2014-03-14 16:22:03 -05:00
'secret' => '',
),
'mandrill' => array(
'secret' => '',
),
'stripe' => array(
'model' => 'User',
'secret' => '',
),
2014-03-14 18:59:40 -05:00
);