-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
extension.json
74 lines (74 loc) · 2.12 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "SemanticResultFormats",
"version": "4.2.1",
"author": [
"James Hong Kong",
"Stephan Gambke",
"[https://www.entropywins.wtf/mediawiki Jeroen De Dauw]",
"Yaron Koren",
"..."
],
"url": "https://www.semantic-mediawiki.org/wiki/Extension:Semantic_Result_Formats",
"descriptionmsg": "srf-desc",
"namemsg": "srf-name",
"license-name": "GPL-2.0-or-later",
"type": "semantic",
"requires": {
"MediaWiki": ">= 1.35",
"extensions": {
"SemanticMediaWiki": ">= 3.0"
}
},
"MessagesDirs": {
"SemanticResultFormats": [
"i18n"
]
},
"callback": "SemanticResultFormats::initExtension",
"ExtensionFunctions": [
"SemanticResultFormats::onExtensionFunction"
],
"AutoloadClasses": {
"SRF\\Carousel": "formats/carousel/Carousel.php"
},
"AutoloadNamespaces": {
"SRF\\DataTables\\": "formats/datatables"
},
"QUnitTestModule": {
"localBasePath": "",
"remoteExtPath": "SemanticResultFormats",
"scripts": [
"tests/qunit/ext.srf.test.js",
"tests/qunit/ext.srf.util.test.js",
"tests/qunit/formats/ext.srf.formats.datatables.test.js",
"tests/qunit/formats/ext.srf.formats.carousel.test.js",
"tests/qunit/formats/ext.srf.formats.eventcalendar.tests.js",
"tests/qunit/formats/ext.srf.formats.filtered.test.js",
"tests/qunit/formats/ext.srf.formats.gallery.test.js",
"tests/qunit/formats/ext.srf.formats.media.test.js",
"tests/qunit/formats/ext.srf.formats.tagcloud.test.js",
"tests/qunit/widgets/ext.srf.widgets.eventcalendar.tests.js",
"tests/qunit/widgets/ext.srf.widgets.optionslist.test.js",
"tests/qunit/widgets/ext.srf.widgets.panel.test.js",
"tests/qunit/widgets/ext.srf.widgets.parameters.test.js"
],
"dependencies": [
"ext.srf",
"ext.srf.util",
"ext.srf.eventcalendar",
"ext.srf.datatables.v2.format",
"ext.srf.carousel.module",
"ext.srf.carousel",
"ext.srf.widgets",
"ext.srf.gallery.overlay",
"ext.srf.gallery.carousel",
"ext.srf.gallery.slideshow",
"ext.srf.gallery.redirect",
"ext.srf.formats.media",
"ext.srf.formats.tagcloud",
"ext.srf.filtered.value-filter.select"
]
},
"load_composer_autoloader": true,
"manifest_version": 2
}