-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
37 lines (37 loc) · 924 Bytes
/
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
{
"manifest_version": 2,
"name": "StandardWikitext",
"version": "3.0",
"author": "[https://www.mediawiki.org/wiki/User:Sophivorus Sophivorus]",
"url": "https://www.mediawiki.org/wiki/Extension:StandardWikitext",
"descriptionmsg": "standardwikitext-desc",
"license-name": "GPL-3.0-or-later",
"type": "parserhook",
"requires": {
"MediaWiki": ">= 1.39.0"
},
"MessagesDirs": {
"StandardWikitext": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"StandardWikitextMagic": "StandardWikitext.magic.php"
},
"AutoloadClasses": {
"StandardWikitext": "StandardWikitext.php"
},
"Hooks": {
"GetDoubleUnderscoreIDs": "StandardWikitext::onGetDoubleUnderscoreIDs",
"PageSaveComplete": "StandardWikitext::onPageSaveComplete"
},
"config": {
"StandardWikitextAccount": {
"value": "StandardWikitext bot"
},
"StandardWikitextNamespaces": {
"value": [ 0 ],
"merge_strategy": "provide_default"
}
}
}