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