-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathextension.json
38 lines (37 loc) · 1.04 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
{
"name": "SubPageList",
"version": "3.0.0",
"author": [
"[https://www.entropywins.wtf/mediawiki Jeroen De Dauw]",
"[https://professional.wiki/ Professional.Wiki]"
],
"url": "https://github.com/JeroenDeDauw/SubPageList/blob/master/README.md",
"descriptionmsg": "spl-desc",
"license-name": "GPL-2.0-or-later",
"type": "parserhook",
"requires": {
"MediaWiki": ">= 1.36.0"
},
"AutoloadNamespaces": {
"SubPageList\\": "src/"
},
"MessagesDirs": {
"SubPageList": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"SubPageListMagic": "SubPageList.i18n.magic.php"
},
"ExtensionFunctions": [
"\\SubPageList\\Setup::onExtensionFunctions"
],
"config_prefix": "egSPL",
"config": {
"Autorefresh": {
"value": false,
"desc": "Automatically invalidate the cache of 'base pages' when creating, moving or deleting a subpage? This covers most cases where people expect automatic refresh of the sub page list. However note that this will not update lists displaying subpages from pages different then themselves."
}
},
"manifest_version": 2
}