forked from SemanticMediaWiki/SemanticExtraSpecialProperties
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
77 lines (77 loc) · 2.09 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
75
76
77
{
"name": "SemanticExtraSpecialProperties",
"version": "3.0.5",
"author": [
"Leo Wallentin",
"James Hong Kong",
"[https://professional.wiki/ Professional Wiki]",
"[https://github.com/SemanticMediaWiki/SemanticExtraSpecialProperties/graphs/contributors ...]"
],
"url": "https://github.com/SemanticMediaWiki/SemanticExtraSpecialProperties/",
"descriptionmsg": "sesp-desc",
"namemsg": "sesp-name",
"license-name": "GPL-2.0-or-later",
"type": "semantic",
"requires": {
"MediaWiki": ">= 1.35",
"extensions": {
"SemanticMediaWiki": "*"
}
},
"MessagesDirs": {
"SemanticExtraSpecialProperties": [
"i18n"
]
},
"callback": "SESP\\Hook::callback",
"AutoloadNamespaces": {
"SESP\\": "src/"
},
"ConfigRegistry": {
"sespg": "SESP\\Config::newInstance"
},
"config_prefix": "sespg",
"config": {
"UseFixedTables": {
"value": false,
"path": false,
"description": "To setup properties as fixed properties in order to improve data access",
"descriptionmsg": "sesp-config-uses-fixed-tables"
},
"DefinitionsFile": {
"value": "data/definitions.json",
"path": true,
"description": "Location of the property definitions",
"descriptionmsg": "sesp-config-definitions-file"
},
"LocalDefinitions": {
"value": [],
"path": false,
"description": "Specifies local definitions",
"descriptionmsg": "sesp-config-local-definitions"
},
"EnabledPropertyList": {
"value": [],
"path": false,
"description": "Specifies the enabled properties",
"descriptionmsg": "sesp-config-enabled-property-list"
},
"LabelCacheVersion": {
"value": "2018.03",
"path": false,
"description": "Specifies an internal cache modifier",
"descriptionmsg": "sesp-config-label-cache-version"
},
"ExcludeBotEdits": {
"value": false,
"path": false,
"description": "Should edits via user accounts in usergroup \"bot\" be ignored when storing data for the special properties?",
"descriptionmsg": "sesp-config-exclude-bot-edits"
}
},
"Hooks": {
"SetupAfterCache": "SESP\\Hook::onSetupAfterCache"
},
"load_composer_autoloader": true,
"manifest_version": 2
}