Attendize/config/services.php

48 lines
1.1 KiB
PHP
Raw Normal View History

2016-02-29 15:59:36 +00:00
<?php
return [
2016-03-07 17:37:16 +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.
|
*/
2016-02-29 15:59:36 +00:00
2016-03-07 17:37:16 +00:00
'mailgun' => [
'domain' => env('MAILGUN_DOMAIN'),
'secret' => env('MAILGUN_SECRET'),
2016-03-07 17:37:16 +00:00
],
2016-02-29 15:59:36 +00:00
2016-03-07 17:37:16 +00:00
'mandrill' => [
'secret' => '',
],
2016-02-29 15:59:36 +00:00
2016-03-07 17:37:16 +00:00
'ses' => [
'key' => '',
'secret' => '',
'region' => 'us-east-1',
],
2016-02-29 15:59:36 +00:00
2016-03-07 17:37:16 +00:00
'stripe' => [
'model' => 'User',
'secret' => '',
],
2016-02-29 15:59:36 +00:00
'twitter' => [
'widget_id' => env('TWITTER_WIDGET_ID'),
],
'sparkpost' => [
'secret' => env('SPARKPOST_SECRET')
2019-11-02 10:32:23 +00:00
],
'google_places' => [
'key' => env('GOOGLE_MAPS_GEOCODING_KEY')
],
2016-02-29 15:59:36 +00:00
];