-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
37 lines (27 loc) · 820 Bytes
/
config.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
<?php
// App Configuration
$appConfig = [
// database connection
'db' => [
'driver' => 'mysql', // Db driver
'host' => 'localhost',
'database' => 'apier_db',
'username' => 'root',
'password' => '',
'charset' => 'utf8', // Optional
'collation' => 'utf8_unicode_ci', // Optional
'prefix' => '' // Table prefix, optional
],
// Mail System config
'mail' => [
'host' => 'smtp.gmail.com',
'username' => '[email protected]',
'password' => 'secret',
'SMTPSecure' => 'tls',
'port' => 587,
// Set From E-mail
'your_email' => '[email protected]',
// Leave it empty if you want to show email address
'alias_name' => 'Test'
],
];