2022-08-23 19:11:43 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Third Party Services
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| This file is for storing the credentials for third party services such
|
|
|
|
| as Mailgun, Postmark, AWS and more. This file provides the de facto
|
|
|
|
| location for this type of information, allowing packages to have
|
|
|
|
| a conventional file to locate the various service credentials.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2022-10-27 21:40:38 +00:00
|
|
|
'mailjet' => [
|
|
|
|
'key' => env('MAILJET_APIKEY'),
|
|
|
|
'secret' => env('MAILJET_APISECRET'),
|
|
|
|
]
|
2022-08-23 19:11:43 +00:00
|
|
|
|
|
|
|
];
|