-
Notifications
You must be signed in to change notification settings - Fork 1
/
extension.json
61 lines (61 loc) · 1.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
{
"name": "LockAuthor",
"version": "1.0",
"author": [
"Vedmaka"
],
"url": "https://www.mediawiki.org/wiki/Extension:LockAuthor",
"descriptionmsg": "lockauthor-desc",
"type": "other",
"requires": {
"MediaWiki": ">= 1.39.0"
},
"license-name": "GPL-2.0-or-later",
"MessagesDirs": {
"LockAuthor": [
"i18n"
]
},
"config": {
"LockAuthorExcludedNamespaces": {
"value": [],
"merge_strategy": "array_plus_2d"
},
"LockAuthorActions": {
"value": [
"edit",
"create"
],
"merge_strategy": "array_plus_2d"
}
},
"AvailableRights": [
"editall"
],
"GroupPermissions": {
"sysop": {
"editall": true
}
},
"HookHandlers": {
"main": {
"class": "LockAuthor\\LockAuthorHooks",
"services": [
"ConfigFactory",
"PermissionManager",
"RevisionLookup"
]
}
},
"Hooks": {
"getUserPermissionsErrors": "main"
},
"AutoloadClasses": {
"LockAuthor\\LockAuthor": "includes/LockAuthor.php",
"LockAuthor\\LockAuthorHooks": "includes/LockAuthorHooks.php"
},
"ConfigRegistry": {
"LockAuthor": "GlobalVarConfig::newInstance"
},
"manifest_version": 2
}