akaunting/config/services.php

38 lines
1.0 KiB
PHP
Raw Permalink Normal View History

2017-09-14 22:21:00 +03:00
<?php
return [
/*
|--------------------------------------------------------------------------
| Third Party Services
|--------------------------------------------------------------------------
|
| This file is for storing the credentials for third party services such
2019-11-16 10:21:14 +03:00
| 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.
2017-09-14 22:21:00 +03:00
|
*/
'mailgun' => [
'domain' => env('MAILGUN_DOMAIN'),
'secret' => env('MAILGUN_SECRET'),
2019-11-16 10:21:14 +03:00
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
2017-09-14 22:21:00 +03:00
],
2019-11-16 10:21:14 +03:00
'postmark' => [
'token' => env('POSTMARK_TOKEN'),
2017-09-14 22:21:00 +03:00
],
2019-11-16 10:21:14 +03:00
'ses' => [
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
2017-09-14 22:21:00 +03:00
],
2020-03-22 18:15:53 +03:00
'sendgrid' => [
'api_key' => env('SENDGRID_API_KEY'),
],
2019-11-23 16:39:15 +03:00
];