-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathextension.json
44 lines (44 loc) · 1.24 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
{
"manifest_version": 2,
"name": "AccountCaptcha",
"version": "0.3.0",
"type": "antispam",
"author": ["[[User:Lethosor|Lethosor]]"],
"url": "https://github.com/DF-Wiki/mw-account-captcha",
"descriptionmsg": "accountcaptcha-desc",
"requires": {
"MediaWiki": ">=1.27.0"
},
"AutoloadClasses": {
"AccountCaptcha": "AccountCaptcha.php",
"AccountCaptchaPreAuthenticationProvider": "AccountCaptcha.php",
"ACTokens": "AccountCaptcha.php",
"SpecialAccountCaptcha": "SpecialAccountCaptcha.php"
},
"ExtensionMessagesFiles": {
"AccountCaptcha": "AccountCaptcha.i18n.php"
},
"config_prefix": "ACConfig",
"config": {
"TokenFunctions": {
"value": [
"ACTokens::generateToken",
"AccountCaptcha::fuzzToken"
],
"merge_strategy": "array_merge"
}
},
"AuthManagerAutoConfig": {
"preauth": {
"AccountCaptchaPreAuthenticationProvider": {
"class": "AccountCaptchaPreAuthenticationProvider",
"sort": 0
}
}
},
"SpecialPages": {
"AccountCaptcha": {
"class": "SpecialAccountCaptcha"
}
}
}