forked from phalcon/cphalcon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
89 lines (89 loc) · 2.41 KB
/
config.json
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"optimizations": {
"static-type-inference": true,
"static-type-inference-second-pass": true,
"local-context-pass": true,
"constant-folding": true,
"static-constant-class-folding": true
},
"namespace": "phalcon",
"name": "phalcon",
"description": "Web framework delivered as a C-extension for PHP",
"author": "Phalcon Team and contributors",
"version": "2.0.2",
"verbose": false,
"optimizer-dirs": [
"optimizers"
],
"constants-sources": [
"ext/phalcon/mvc/model/query/scanner.h",
"ext/phalcon/annotations/scanner.h",
"ext/phalcon/mvc/view/engine/volt/scanner.h"
],
"extra-sources": [
"phalcon/annotations/scanner.c",
"phalcon/annotations/parser.c",
"phalcon/mvc/model/orm.c",
"phalcon/mvc/model/query/scanner.c",
"phalcon/mvc/model/query/parser.c",
"phalcon/mvc/view/engine/volt/parser.c",
"phalcon/mvc/view/engine/volt/scanner.c",
"phalcon/assets/filters/jsminifier.c",
"phalcon/assets/filters/cssminifier.c",
"phalcon/mvc/url/utils.c"
],
"globals": {
"db.escape_identifiers": {
"type": "bool",
"default": true
},
"orm.parser_cache": {
"type": "hash",
"default": "NULL"
},
"orm.ast_cache": {
"type": "hash",
"default": "NULL"
},
"orm.cache_level": {
"type": "int",
"default": 3
},
"orm.unique_cache_id": {
"type": "int",
"default": 3
},
"orm.events": {
"type": "bool",
"default": true
},
"orm.virtual_foreign_keys": {
"type": "bool",
"default": true
},
"orm.column_renaming": {
"type": "bool",
"default": true
},
"orm.not_null_validations": {
"type": "bool",
"default": true
},
"orm.exception_on_failed_save": {
"type": "bool",
"default": false
},
"orm.enable_literals": {
"type": "bool",
"default": true
}
},
"destructors": {
"request": [
{
"include": "phalcon/mvc/model/orm.h",
"code": "phalcon_orm_destroy_cache(TSRMLS_C)"
}
]
}
}