Files
spa-api/config/services.php

40 lines
1.0 KiB
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
2015-02-22 20:47:03 -06:00
/*
|--------------------------------------------------------------------------
| Third Party Services
|--------------------------------------------------------------------------
|
| This file is for storing the credentials for third party services such
| as Stripe, Mailgun, SparkPost and others. This file provides a sane
2015-02-22 20:47:03 -06:00
| default location for this type of information, allowing packages
| to have a conventional place to find your various credentials.
|
*/
2014-03-14 18:59:40 -05:00
2015-02-22 20:47:03 -06:00
'mailgun' => [
'domain' => env('MAILGUN_DOMAIN'),
'secret' => env('MAILGUN_SECRET'),
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
2015-02-22 20:47:03 -06:00
],
2014-03-14 16:22:03 -05:00
2015-02-22 20:47:03 -06:00
'ses' => [
2016-03-01 08:23:00 -06:00
'key' => env('SES_KEY'),
'secret' => env('SES_SECRET'),
2018-04-09 12:42:18 +01:00
'region' => env('SES_REGION', 'us-east-1'),
2015-02-22 20:47:03 -06:00
],
2014-11-19 23:36:45 -06:00
2016-03-06 19:56:30 -06:00
'sparkpost' => [
'secret' => env('SPARKPOST_SECRET'),
],
2015-02-22 20:47:03 -06:00
'stripe' => [
2016-03-01 08:23:00 -06:00
'model' => App\User::class,
'key' => env('STRIPE_KEY'),
'secret' => env('STRIPE_SECRET'),
2015-02-22 20:47:03 -06:00
],
2014-03-14 16:22:03 -05:00
2014-08-24 14:03:58 -05:00
];