laravel/config/services.php

39 lines
980 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
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, 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 18:59:40 -05:00
2015-02-22 20:47:03 -06:00
'mailgun' => [
'domain' => env('MAILGUN_DOMAIN'),
'secret' => env('MAILGUN_SECRET'),
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'),
2015-02-22 20:47:03 -06:00
'region' => 'us-east-1',
],
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
];