source: config/services.php@ a0635eb

develop
Last change on this file since a0635eb was 2fc88ec, checked in by beratkjufliju <kufliju@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 950 bytes
Line 
1<?php
2
3return [
4
5 /*
6 |--------------------------------------------------------------------------
7 | Third Party Services
8 |--------------------------------------------------------------------------
9 |
10 | This file is for storing the credentials for third party services such
11 | as Mailgun, Postmark, AWS and more. This file provides the de facto
12 | location for this type of information, allowing packages to have
13 | a conventional file to locate the various service credentials.
14 |
15 */
16
17 'mailgun' => [
18 'domain' => env('MAILGUN_DOMAIN'),
19 'secret' => env('MAILGUN_SECRET'),
20 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
21 ],
22
23 'postmark' => [
24 'token' => env('POSTMARK_TOKEN'),
25 ],
26
27 'ses' => [
28 'key' => env('AWS_ACCESS_KEY_ID'),
29 'secret' => env('AWS_SECRET_ACCESS_KEY'),
30 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
31 ],
32
33];
Note: See TracBrowser for help on using the repository browser.