forked from wikimedia/mediawiki-extensions-CategoryWatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
35 lines (35 loc) · 1.11 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
{
"name": "CategoryWatch",
"version": "2.0, 2017-09-19-1",
"author": [
"[http://www.organicdesign.co.nz/User:Nad User:Nad]",
"Sean Chen",
"[http://mwstake.org/ Mark A. Hershberger]"
],
"url": "https://www.mediawiki.org/wiki/Extension:CategoryWatch",
"descriptionmsg": "categorywatch-desc",
"license-name": "GPL-2.0-or-later",
"type": "other",
"requires": {
"MediaWiki": ">= 1.29.0"
},
"AutoloadClasses": {
"CategoryWatch\\EchoEventPresentationModel": "src/EchoEventPresentationModel.php",
"CategoryWatch\\Hook": "src/Hook.php"
},
"MessagesDirs": {
"CategoryWatch": "i18n"
},
"DefaultUserOptions": {
"echo-subscriptions-email-categorywatch": true,
"echo-subscriptions-web-categorywatch": true
},
"Hooks": {
"BeforeCreateEchoEvent": "CategoryWatch\\Hook::onBeforeCreateEchoEvent",
"EchoGetBundleRules": "CategoryWatch\\Hook::onEchoGetBundleRules",
"CategoryAfterPageAdded": "CategoryWatch\\Hook::onCategoryAfterPageAdded",
"CategoryAfterPageRemoved": "CategoryWatch\\Hook::onCategoryAfterPageRemoved",
"GetPreferences": "CategoryWatch\\Hook::onGetPreferences"
},
"manifest_version": 1
}