summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticFormsSelect/extension.json
blob: bacfb31306517294264c0fdc3ce900d727991b59 (plain)
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
{
	"name": "Semantic Forms Select",
	"version": "3.0.0",
	"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.27"
	},
	"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.sf_select.scriptselect": {
			"scripts": [
				"res/scriptSelect.js"
			],
			"styles": [
				"res/select2.css"
			],
			"dependencies": [
				"ext.pageforms.main",
				"ext.pageforms.select2"
			],
			"position": "bottom"
		}
	},
	"ResourceFileModulePaths": {
		"localBasePath": "",
		"remoteExtPath": "SemanticFormsSelect"
	},
	"Hooks": {
		"ParserFirstCallInit": [
			"SFS\\Hooks::onSemanticFormsSelectSetup"
		]
	},
	"load_composer_autoloader":true,
	"manifest_version": 1
}