-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathextension.json
41 lines (41 loc) · 995 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
41
{
"name": "SemanticCompoundQueries",
"version": "3.0.0-beta",
"author": [
"James Hong Kong",
"Yaron Koren",
"..."
],
"url": "https://www.semantic-mediawiki.org/wiki/Extension:Semantic_Compound_Queries",
"descriptionmsg": "semanticcompoundqueries-desc",
"namemsg": "semanticcompoundqueries-name",
"license-name": "GPL-2.0-or-later",
"type": "semantic",
"requires": {
"MediaWiki": ">= 1.39",
"extensions": {
"SemanticMediaWiki": ">= 4.0"
}
},
"MessagesDirs": {
"SemanticCompoundQueries": [
"i18n"
]
},
"callback": "SemanticCompoundQueries::initExtension",
"ExtensionFunctions": [
"SemanticCompoundQueries::onExtensionFunction"
],
"AutoloadNamespaces": {
"SCQ\\": "src/"
},
"TestAutoloadNamespaces": {
"SCQ\\Tests\\": "tests/phpunit/Unit/",
"SCQ\\Tests\\Integration\\": "tests/phpunit/Integration/"
},
"AutoloadClasses": {
"SemanticCompoundQueries": "SemanticCompoundQueries.php"
},
"load_composer_autoloader": true,
"manifest_version": 2
}