laravel/config/services.php

34 lines
950 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
2019-08-14 09:19:31 -05:00
| as Mailgun, Postmark, AWS and more. This file provides the de facto
2019-08-13 15:05:56 -05:00
| location for this type of information, allowing packages to have
| a conventional file to locate the various service credentials.
2015-02-22 20:47:03 -06:00
|
*/
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
2019-02-25 20:21:00 -06:00
'postmark' => [
'token' => env('POSTMARK_TOKEN'),
],
2015-02-22 20:47:03 -06:00
'ses' => [
2018-12-18 09:09:55 -06:00
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
2015-02-22 20:47:03 -06:00
],
2014-11-19 23:36:45 -06:00
2014-08-24 14:03:58 -05:00
];