-
Notifications
You must be signed in to change notification settings - Fork 1
/
extension.json
47 lines (47 loc) · 1.08 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
45
46
47
{
"name": "SemanticImageCaption",
"version": "1.0.0-alpha",
"author": [
"James Hong Kong",
"..."
],
"url": "https://github.com/SemanticMediaWiki/SemanticImageCaption/",
"descriptionmsg": "semantic-imagecaption-desc",
"namemsg": "semantic-imagecaption-name",
"license-name": "GPL-2.0-or-later",
"type": "semantic",
"requires": {
"MediaWiki": ">= 1.32",
"extensions": {
"SemanticMediaWiki": ">= 3.2"
}
},
"MessagesDirs": {
"SemanticImageCaption": [
"i18n"
]
},
"callback": "SemanticImageCaption::initExtension",
"ExtensionFunctions": [
"SemanticImageCaption::onExtensionFunction"
],
"Hooks": {
"ImageBeforeProduceHTML": [
"SMW\\ImageCaption\\Hooks::onImageBeforeProduceHTML"
],
"SMW::Schema::RegisterSchemaTypes": [
"SMW\\ImageCaption\\Hooks::onRegisterSchemaTypes"
]
},
"AutoloadNamespaces": {
"SMW\\ImageCaption\\": "src/"
},
"TestAutoloadNamespaces": {
"SMW\\ImageCaption\\Tests": "tests/phpunit"
},
"AutoloadClasses": {
"SemanticImageCaption": "SemanticImageCaption.php"
},
"load_composer_autoloader":true,
"manifest_version": 2
}