-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
85 lines (78 loc) · 2.04 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
{
"namespace": "phalcon",
"name": "phalcon",
"description": "Phalcon is a full stack PHP framework, delivered as a PHP extension, offering lower resource consumption and high performance.",
"author": "Phalcon Team and contributors",
"version": "5.1.2",
"verbose": false,
"stubs": {
"path": "ide\/%version%\/%namespace%\/",
"stubs-run-after-generate": false,
"banner": "/* This file is part of the Phalcon Framework.\n *\n * (c) Phalcon Team <team@phalcon.io>\n *\n * For the full copyright and license information, please view the LICENSE.txt\n * file that was distributed with this source code.\n */"
},
"optimizer-dirs": [
"optimizers"
],
"requires": {
"extensions": [
"PDO",
"SPL",
"standard",
"hash",
"json"
]
},
"optimizations": {
"static-type-inference": true,
"static-type-inference-second-pass": true,
"local-context-pass": true,
"constant-folding": true,
"static-constant-class-folding": true
},
"prototype-dir": {},
"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/mvc/url/utils.c"
],
"destructors": {
"request": [
{
"include": "phalcon/mvc/model/orm.h",
"code": "phalcon_orm_destroy_cache()"
}
]
},
"globals": {
"orm.ast_cache": {
"type": "hash",
"default": "NULL"
},
"orm.cache_level": {
"type": "int",
"default": 3
},
"orm.enable_literals": {
"type": "bool",
"default": true
},
"orm.parser_cache": {
"type": "hash",
"default": "NULL"
},
"orm.unique_cache_id": {
"type": "int",
"default": 3
}
}
}