progetto di test della creazione di un progetto basato sul framework laravel e aggiunta form login e register utilizzando breeze
filippo.bertilotti
2024-04-17 1e9693a2b6a6500af56915fae735ea7ba54a9afa
commit | author | age
fae1b1 1 <?php
F 2
3 return [
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         'scheme' => 'https',
22     ],
23
24     'postmark' => [
25         'token' => env('POSTMARK_TOKEN'),
26     ],
27
28     'ses' => [
29         'key' => env('AWS_ACCESS_KEY_ID'),
30         'secret' => env('AWS_SECRET_ACCESS_KEY'),
31         'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
32     ],
33
34 ];