-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathconfig.json
81 lines (81 loc) · 2.37 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
{
"namespace": "ice",
"name": "ice",
"description": "Simple and fast PHP framework frozen in C extension.<br>Copyright (c) 2014-2023 Ice Team.",
"author": "Ice Team",
"version": "1.10.1",
"verbose": false,
"info": [
{
"rows": [
["homepage", "https://www.iceframework.org"],
["email", "info@iceframework.org"],
["freenode", "#iceframework"],
["twitter", "iceframework"],
["packagist", "iceframework"],
["github", "ice"]
]
}
],
"stubs": {
"path": "../ide/latest/",
"stubs-run-after-generate": false
},
"api": {
"path" : "../doc/latest/",
"theme-directories": [
"../doc/themes"
],
"theme" : {
"name":"zephir-ice",
"options" :{
"github":"https://github.com/ice/framework",
"analytics":null
}
}
},
"globals": {
"cli_colors": {
"type": "bool",
"default": true
}
},
"warnings": {
"unused-variable": true,
"unused-variable-external": false,
"possible-wrong-parameter": true,
"possible-wrong-parameter-undefined": false,
"nonexistent-function": true,
"nonexistent-class": true,
"non-valid-isset": true,
"non-array-update": true,
"non-valid-objectupdate": true,
"non-valid-fetch": true,
"invalid-array-index": true,
"non-array-append": true,
"invalid-return-type": true,
"unreachable-code": true,
"nonexistent-constant": true,
"not-supported-magic-constant": true,
"non-valid-decrement": true,
"non-valid-increment": true,
"non-valid-clone": true,
"non-valid-new": true,
"non-array-access": true,
"invalid-reference": true,
"invalid-typeof-comparison": true,
"conditional-initialization": true
},
"optimizations": {
"static-type-inference": true,
"static-type-inference-second-pass": true,
"local-context-pass": true,
"constant-folding": true,
"static-constant-class-folding": true,
"call-gatherer-pass": true,
"check-invalid-reads": false
},
"prototype-dir": {
"db": "prototypes/db"
}
}