-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_env.local.php
40 lines (35 loc) · 1.15 KB
/
_env.local.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
return [
/*
|--------------------------------------------------------------------------
| Database Settigns
|--------------------------------------------------------------------------
|
| Here are each of the database connections setup for your application.
| Of course, examples of configuring each database platform that is
| supported by Laravel is shown below to make development simple.
|
*/
'DB_NAME' => 'tigre',
'DB_USERNAME' => 'dbuser',
'DB_PASSWORD' => '123',
'DB_HOST' => 'localhost',
/*
|--------------------------------------------------------------------------
| Email Settigns
|--------------------------------------------------------------------------
|
| Here setup your email configurations.
|
*/
'MAIL_DRIVER' => 'smtp', //"smtp", "mail", "sendmail"
'MAIL_HOST' => 'smtp.mailgun.org',
'MAIL_SMTP_PORT' => 587,
'MAIL_FROM.ADDRESS' => '[email protected]',
'MAIL_FROM.NAME' => 'Contato',
'MAIL_ENCRYPTION' => 'tls',
'MAIL_USERNAME' => null,
'MAIL_PASSWORD' => null,
'MAIL_SENDMAIL_PATH' => '/usr/sbin/sendmail -bs',
'MAIL_PRETEND' => false,
];