-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathextension.json
More file actions
55 lines (42 loc) · 1.52 KB
/
extension.json
File metadata and controls
55 lines (42 loc) · 1.52 KB
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
{
"name": "Semantic Wikibase",
"version": "0.1.0",
"author": [
"[https://www.entropywins.wtf/mediawiki Jeroen De Dauw]",
"[https://professional.wiki/ Professional.Wiki]"
],
"url": "https://professional.wiki/en/extension/semantic-wikibase",
"descriptionmsg": "semantic-wb-desc",
"license-name": "GPL-2.0-or-later",
"type": "semantic",
"requires": {
"MediaWiki": ">= 1.35.0",
"extensions": {
"SemanticMediaWiki": ">=3.1",
"WikibaseRepository": "*"
}
},
"MessagesDirs": {
"SemanticWikibase": [
"i18n"
]
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\SemanticWikibase\\": "src/",
"MediaWiki\\Extension\\SemanticWikibase\\Tests\\": "tests/"
},
"callback": "MediaWiki\\Extension\\SemanticWikibase\\EntryPoints\\HookHandlers::onExtensionRegistration",
"Hooks": {
"ParserFirstCallInit":"MediaWiki\\Extension\\SemanticWikibase\\EntryPoints\\HookHandlers::onParserFirstCallInit",
"SMW::Property::initProperties": "MediaWiki\\Extension\\SemanticWikibase\\EntryPoints\\HookHandlers::onSmwInitProperties",
"SMW::SQLStore::AddCustomFixedPropertyTables": "MediaWiki\\Extension\\SemanticWikibase\\EntryPoints\\HookHandlers::onSmwAddCustomFixedPropertyTables",
"SMW::SQLStore::BeforeDataUpdateComplete": "MediaWiki\\Extension\\SemanticWikibase\\EntryPoints\\HookHandlers::onSmwUpdateDataBefore",
"MultiContentSave": "MediaWiki\\Extension\\SemanticWikibase\\EntryPoints\\HookHandlers::onMultiContentSave"
},
"config": {
"SemanticWikibaseLanguage": {
"value": ""
}
},
"manifest_version": 2
}