-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevelopment.php
More file actions
34 lines (33 loc) · 941 Bytes
/
development.php
File metadata and controls
34 lines (33 loc) · 941 Bytes
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 [
'settings' => [
// debug options
'debug' => true,
// url config. Url must end with a slash '/'
'baseUrl' => 'http://localhost:8080/',
'indexFile' => true,
// database configs
'database' => [
// default db connection settings
'default' => [
'driver' => 'mysql',
'host' => 'localhost',
'database' => '',
'username' => '',
'password' => '',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => ''
],
],
'cache' => [
'default' => [
'driver' => 'redis',
'scheme' => 'tcp',
'host' => 'localhost',
'port' => 6379,
'database' => 0,
]
]
]
];