forked from zephir-lang/zephir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
129 lines (127 loc) · 3.39 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"stubs": {
"path": "ide\/%version%\/%namespace%\/",
"stubs-run-after-generate": false
},
"api": {
"path" : "doc/%version%",
"theme" : {
"name":"zephir",
"options" :{
"github":"https://github.com/user/repo",
"analytics":null,
"main_color": "#3E6496",
"link_color": "#3E6496",
"link_hover_color": "#5F9AE7"
}
}
},
"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,
"private-internal-methods": false,
"public-internal-methods": false,
"public-internal-functions": true
},
"namespace": "test",
"name": "Test Extension",
"description": "Description test for<br\/>Test Extension",
"author": "Zephir Team",
"version": "1.0.0",
"verbose": true,
"globals": {
"my_setting_1": {
"type": "bool",
"default": true,
"ini-entry": {
"name": "test.my_setting_1",
"scope": "PHP_INI_ALL"
}
},
"my_setting_2": {
"type": "int",
"default": 10
},
"my_setting_3": {
"type": "double",
"default": 15.2
},
"test.my_setting_1": {
"type": "bool",
"default": true
},
"test.my_setting_2": {
"type": "int",
"default": 100
},
"test.my_setting_3": {
"type": "double",
"default": 7.5
}
},
"info": [
{
"header": [
"Directive",
"Value"
],
"rows": [
[
"setting1",
"value1"
],
[
"setting2",
"value2"
]
]
},
{
"header": [
"Directive",
"Value"
],
"rows": [
[
"setting3",
"value3"
],
[
"setting4",
"value4"
]
]
}
]
}