-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpropel.json
More file actions
40 lines (40 loc) · 976 Bytes
/
Copy pathpropel.json
File metadata and controls
40 lines (40 loc) · 976 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
35
36
37
38
39
40
{
"propel": {
"database": {
"connections": {
"default": {
"adapter": "mysql",
"classname": "Propel\\Runtime\\Connection\\ProfilerConnectionWrapper",
"dsn": "mysql:host=%env.DB_HOST%;dbname=%env.DB_NAME%",
"user": "%env.DB_USER%",
"password": "%env.DB_PASS%",
"attributes": [],
"settings": {
"charset": "utf8",
"queries": {
"utf8": "SET NAMES utf8 COLLATE utf8_unicode_ci, COLLATION_CONNECTION = utf8_unicode_ci, COLLATION_DATABASE = utf8_unicode_ci, COLLATION_SERVER = utf8_unicode_ci"
}
}
}
}
},
"runtime": {
"defaultConnection": "default",
"connections": ["default"]
},
"generator": {
"defaultConnection": "default",
"connections": ["default"]
},
"reverse": {
"connection": "default"
},
"paths": {
"phpDir": "app/packages",
"phpConfDir": "bootstrap/",
"migrationDir": "db/migrations",
"sqlDir": "db/sql",
"schemaDir": "db"
}
}
}