-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.json
More file actions
60 lines (60 loc) · 1.5 KB
/
extension.json
File metadata and controls
60 lines (60 loc) · 1.5 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
56
57
58
59
60
{
"name": "TimedNotify",
"version": "1.1.1",
"url": "https://www.mediawiki.org/wiki/Extension:TimedNotify",
"type": "other",
"author": [
"[https://mediawiki.org/wiki/User:Xxmarijnw Marijn van Wezel] ([https://wikibase-solutions.com Wikibase Solutions])"
],
"descriptionmsg": "timednotify-desc",
"license-name": "GPL-2.0-or-later",
"requires": {
"MediaWiki": ">= 1.35.0",
"extensions": {
"Echo": "*"
}
},
"MessagesDirs": {
"TimedNotify": [
"i18n"
]
},
"AutoloadNamespaces": {
"TimedNotify\\": "src/"
},
"ServiceWiringFiles": [
"TimedNotify.wiring.php"
],
"Hooks": {
"BeforeCreateEchoEvent": "TimedNotify\\MediaWiki\\Hooks\\EchoHooks::onBeforeCreateEchoEvent",
"BeforeInitialize": "BeforeInitializeNotificationRunner",
"LoadExtensionSchemaUpdates": "DatabaseSchemaUpdater"
},
"HookHandlers": {
"BeforeInitializeNotificationRunner": {
"class": "TimedNotify\\MediaWiki\\Hooks\\BeforeInitializeNotificationRunner",
"services": [
"TimedNotify.NotificationRunner"
]
},
"DatabaseSchemaUpdater": {
"class": "TimedNotify\\MediaWiki\\Hooks\\DatabaseSchemaUpdater"
}
},
"config": {
"TimedNotifyRunRate": {
"value": 0.05
},
"TimedNotifyPushedNotificationRetentionDays": {
"value": 60
},
"TimedNotifyRunDeferred": {
"value": true
},
"TimedNotifyDisabledNotifiers": {
"value": []
}
},
"manifest_version": 2,
"load_composer_autoloader": true
}