-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodule.json
72 lines (69 loc) · 1.23 KB
/
module.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
{
"name": "tinyphp-ui",
"namespace": "Tiny\\UI",
"desc": "tinyphp前端UI库",
"type": "module",
"version": "1.0.0",
"init": true,
"index": "./src",
"setting": {
"public_path": "/static/tinyphp-ui/",
"inject": true,
"template_plugin": "\\Tiny\\MVC\\View\\UI\\Template\\UIViewTemplatePlugin",
"helper": "\\Tiny\\MVC\\View\\UI\\Helper\\UIViewHelper",
"dev": {
"enabled": true,
"public_path": "http://127.0.0.1:8080/"
},
"assigns": [
"ui",
"uiadmin"
],
"installer": {
"param_name": "ui-install",
"install_path": "tinyphp-ui/",
"event_listener": "\\Tiny\\MVC\\View\\UI\\EventListener\\UIInstallerEventListener"
}
},
"routes": [
{
"route": "pathinfo",
"rule": {
"checkRegex": "#^/(uidemo)#is",
"values": {
},
"priority": -1
}
}
],
"autoloader": {
"global": null,
"ignores": [
"Tiny\\UI\\UITaggerParser",
"Tiny\\UI\\Helper\\UIViewHelper"
],
"static": {
"web": true,
"paths": [
{
"from": "./dist",
"to": "./",
"exclude": "",
"replace": []
}
]
},
"namespaces": {
}
},
"config": true,
"lang": true,
"eventlistener": [
{
"class": "Tiny\\UI\\Event\\UIEventListener",
"priority": -999
}
],
"require": {
}
}