-
Notifications
You must be signed in to change notification settings - Fork 14
/
extension.json
40 lines (40 loc) · 1009 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
38
39
40
{
"name": "SemanticScribunto",
"version": "2.3.2",
"author": [
"James Hong Kong",
"[https://www.semantic-mediawiki.org/wiki/User:Oetterer Tobias Oetterer]"
],
"url": "https://github.com/SemanticMediaWiki/SemanticScribunto/",
"descriptionmsg": "smw-scribunto-desc",
"namemsg": "smw-scribunto-title",
"license-name": "GPL-2.0-or-later",
"type": "semantic",
"requires": {
"MediaWiki": ">= 1.39",
"extensions": {
"Scribunto": "*",
"SemanticMediaWiki": ">= 4.1"
}
},
"AutoloadNamespaces": {
"SMW\\Scribunto\\": "src/"
},
"TestAutoloadNamespaces": {
"SMW\\Scribunto\\Tests\\": "tests/phpunit/"
},
"Hooks": {
"ScribuntoExternalLibraries": "SMW\\Scribunto\\HooksHandler::onScribuntoExternalLibraries"
},
"callback": "SMW\\Scribunto\\SemanticScribunto::initExtension",
"MessagesDirs": {
"SemanticScribunto": [
"i18n"
]
},
"ExtensionFunctions": [
"SMW\\Scribunto\\SemanticScribunto::onExtensionFunction"
],
"load_composer_autoloader":true,
"manifest_version": 2
}