tethys/config/services.php

38 lines
847 B
PHP
Raw Permalink Normal View History

2015-07-19 06:49:24 +00:00
<?php
return [
2018-08-06 12:30:51 +00: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-07-19 06:49:24 +00:00
2018-08-06 12:30:51 +00:00
'mailgun' => [
'domain' => '',
'secret' => '',
],
2015-07-19 06:49:24 +00:00
2018-08-06 12:30:51 +00:00
'mandrill' => [
'secret' => '',
],
2015-07-19 06:49:24 +00:00
2018-08-06 12:30:51 +00:00
'ses' => [
'key' => '',
'secret' => '',
'region' => 'us-east-1',
],
2015-07-19 06:49:24 +00:00
2018-08-06 12:30:51 +00:00
'stripe' => [
'model' => App\Models\User::class,
2018-08-06 12:30:51 +00:00
'secret' => '',
],
2015-07-19 06:49:24 +00:00
];