forked from SemanticMediaWiki/SemanticFormsSelect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
68 lines (68 loc) · 1.62 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
{
"name": "Semantic Forms Select",
"version": "4.0.0-beta",
"author": [
"Jason Zhang",
"James Hong Kong",
"Toni Hermoso Pulido",
"Thomas Mulhall",
"Alexander Gesinn",
"[https://github.com/SemanticMediaWiki/SemanticFormsSelect/graphs/contributors ...]"
],
"url": "https://www.mediawiki.org/wiki/Extension:SemanticFormsSelect",
"descriptionmsg": "sfs-desc",
"license-name": "GPL-2.0-or-later",
"type": "semantic",
"requires": {
"MediaWiki": ">= 1.35"
},
"AutoloadClasses": {
"SFS\\Hooks": "SemanticFormsSelect.hooks.php",
"SFS\\SemanticFormsSelectInput": "src/SemanticFormsSelectInput.php",
"SFS\\Output": "src/Output.php",
"SFS\\SelectField": "src/SelectField.php",
"SFS\\ApiSemanticFormsSelectRequestProcessor": "src/ApiSemanticFormsSelectRequestProcessor.php",
"SFS\\ApiSemanticFormsSelect": "src/ApiSemanticFormsSelect.php"
},
"config": {
"ScriptSelectCount": 0,
"SF_Select_debug": false
},
"callback": "SFS\\Hooks::onRegistration",
"MessagesDirs": {
"SemanticFormsSelect": [
"i18n"
]
},
"ResourceModules": {
"ext.sfs": {
"scripts": [
"res/pf.originalValueLookup.js",
"res/sfs.js",
"res/index.js"
],
"styles": [
"res/select2.css"
],
"dependencies": [
"ext.pageforms.main",
"ext.pageforms.select2"
],
"position": "bottom"
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "SemanticFormsSelect"
},
"Hooks": {
"ParserFirstCallInit": [
"SFS\\Hooks::onSemanticFormsSelectSetup"
],
"ResourceLoaderTestModules":[
"SFS\\Hooks::onResourceLoaderTestModules"
]
},
"load_composer_autoloader":true,
"manifest_version": 1
}