-
Notifications
You must be signed in to change notification settings - Fork 17
/
extension.json
46 lines (46 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
{
"name": "UML",
"version": "0.7",
"author": [
"Arnoud Roques",
"Pieter J. Kersten",
"Wolfgang Fahl",
"Frédéric Planchon"
],
"url": "https://www.mediawiki.org/wiki/Extension:PlantUML",
"descriptionmsg": "plantuml-desc",
"license-name": "GPL-2.0",
"type": "parserhook",
"requires": {
"MediaWiki": ">= 1.26.0"
},
"config": {
"PlantUmlUseCloud": false,
"PlantUmlDebug": false,
"PlantUmlCloudURI": "http://www.plantuml.com/plantuml/",
"PlantUmlJarFile": "plantuml.jar",
"PlantUmlFormat": "svg"
},
"ConfigRegistry": {
"PlantUml": "GlobalVarConfig::newInstance"
},
"APIModules": {
},
"AutoloadClasses": {
"PlantUML": "PlantUML.body.php"
},
"Hooks": {
"ParserFirstCallInit": [
"PlantUML::onParserFirstCallInit"
],
"PageContentSave": [
"PlantUML::onPageContentSave"
]
},
"MessagesDirs": {
"PlantUML": [
"i18n"
]
},
"manifest_version": 1
}