forked from hettiger/larapress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example.php
34 lines (28 loc) · 932 Bytes
/
.env.example.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
<?php
return array(
/*
|--------------------------------------------------------------------------
| Database Credentials
|--------------------------------------------------------------------------
|
| Here you may provide your environment specific MySQL database credentials
|
*/
'MYSQL_HOST' => 'localhost',
'MYSQL_DATABASE' => 'database',
'MYSQL_USERNAME' => 'root',
'MYSQL_PASSWORD' => '',
/*
|--------------------------------------------------------------------------
| SMTP Credentials
|--------------------------------------------------------------------------
|
| Here you may provide your environment specific SMTP (Mail) credentials
|
*/
'SMTP_HOST' => 'smtp.mailgun.org',
'SMTP_PORT' => 587,
'SMTP_ENCRYPTION' => 'tls',
'SMTP_USERNAME' => null,
'SMTP_PASSWORD' => null,
);