-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathextension.json
49 lines (49 loc) · 1.13 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
{
"name": "SemanticTasks",
"version": "2.1.0",
"author": [
"Steren Giannini",
"Ryan Lane",
"Ike Hecht",
"Peter Grassberger",
"Vedmaka",
"thomas-topway-it"
],
"url": "https://www.mediawiki.org/wiki/Extension:Semantic_Tasks",
"descriptionmsg": "semantictasks-desc",
"namemsg": "semantictasks-name",
"license-name": "GPL-2.0-or-later",
"type": "semantic",
"requires": {
"MediaWiki": ">= 1.35"
},
"MessagesDirs": {
"SemanticTasks": [
"i18n"
]
},
"callback": "SemanticTasks::initExtension",
"ExtensionFunctions": [
"SemanticTasks::onExtensionFunction"
],
"AutoloadNamespaces": {
"ST\\": "src"
},
"AutoloadClasses": {
"SemanticTasks": "SemanticTasks.php"
},
"load_composer_autoloader": true,
"manifest_version": 1,
"config": {
"_prefix": "stg",
"PropertyAssignedTo": "Assigned to",
"PropertyCarbonCopy": "Carbon copy",
"PropertyTargetDate": "Target date",
"PropertyReminderAt": "Reminder at",
"PropertyStatus": "Status",
"PropertyAssignedToGroup": "Assigned to group",
"PropertyHasAssignee": "Has assignee",
"SemanticTasksNotifyIfUnassigned": false,
"NotificationFromSystemAddress": false
}
}