forked from samwilson/diagrams-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
53 lines (53 loc) · 1.08 KB
/
extension.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
{
"name": "Diagrams",
"namemsg": "diagrams-extensionname",
"type": "other",
"author": [
"[https://samwilson.id.au/ Sam Wilson]"
],
"version": "0.9.4",
"url": "https://www.mediawiki.org/wiki/Extension:Diagrams",
"descriptionmsg": "diagrams-desc",
"license-name": "GPL-3.0-or-later",
"requires": {
"MediaWiki": ">= 1.34.0, <= 1.39"
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\Diagrams\\": "includes/"
},
"config": {
"DiagramsServiceUrl": {
"description": "URL of the diagram-rendering service. If not provided, graphs will be locally rendered.",
"value": ""
}
},
"Hooks": {
"ParserFirstCallInit": "main"
},
"HookHandlers": {
"main": {
"class": "MediaWiki\\Extension\\Diagrams\\Hooks",
"services": [
"MainConfig"
]
}
},
"MessagesDirs": {
"Diagrams": [
"i18n"
]
},
"ResourceModules": {
"ext.diagrams.mermaid": {
"packageFiles": [
"resources/mermaid.js",
"resources/foreign/mermaid/mermaid.min.js"
]
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "Diagrams"
},
"manifest_version": 2
}