-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathextension.json
44 lines (44 loc) · 1.09 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
{
"name": "ParserPower",
"version": "1.3.1",
"author": [
"[http://www.mediawiki.org/wiki/User:OoEyes Shawn Bruckner]",
"Hydra Wiki Platform Team",
"wiki.gg development",
"Derugon"
],
"license-name": "GPL-2.0-or-later",
"url": "https://www.mediawiki.org/wiki/Extension:ParserPower",
"description": "A collection of extended parser functions for MediaWiki, particularly including functions for dealing with lists of values separated by a dynamically-specified delimiter.",
"descriptionmsg": "parserpower-desc",
"type": "parserhook",
"requires": {
"MediaWiki": ">= 1.43.0",
"platform": {
"php": ">= 8.1"
}
},
"MessagesDirs": {
"ParserPower": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"ParserPowerMagic": "ParserPower.i18n.magic.php"
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\ParserPower\\": "src/"
},
"HookHandlers": {
"FunctionRegistration": {
"class": "MediaWiki\\Extension\\ParserPower\\Hooks\\FunctionRegistrationHooks",
"services": [
"RedirectLookup"
]
}
},
"Hooks": {
"ParserFirstCallInit": "FunctionRegistration"
},
"manifest_version": 2
}