This repository has been archived by the owner on Mar 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
67 lines (67 loc) · 1.57 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
62
63
64
65
66
67
{
"name": "hCaptcha",
"author": [
"Sam Reed",
"..."
],
"url": "https://www.mediawiki.org/wiki/Extension:ConfirmEdit",
"descriptionmsg": "hcaptcha-desc",
"license-name": "GPL-2.0-or-later",
"type": "antispam",
"MessagesDirs": {
"hNoCaptcha": [
"i18n"
]
},
"AutoloadClasses": {
"HCaptchaHooks": "includes/HCaptchaHooks.php",
},
"AutoloadNamespaces": {
"MediaWiki\\Extensions\\ConfirmEdit\\hCaptcha\\": "includes/"
},
"config": {
"CaptchaClass": {
"value": "MediaWiki\\Extensions\\ConfirmEdit\\hCaptcha\\HCaptcha"
},
"HCaptchaProxy": {
"description": "Proxy to use for outbound PHP web requests to hCaptcha servers",
"value": false
},
"HCaptchaSiteKey": {
"description": "Sitekey from hCaptcha (requires creating an account)",
"value": ""
},
"HCaptchaSecretKey": {
"description": "Secret key from hCaptcha (requires creating an account)",
"value": ""
},
"HCaptchaSendRemoteIP": {
"description": "Whether to send the client's IP address to hCaptcha",
"value": false
}
},
"ResourceFileModulePaths": {
"localBasePath": "resources",
"remoteExtPath": "ConfirmEdit/hCaptcha/resources"
},
"ResourceModules": {
"ext.confirmEdit.hCaptcha.visualEditor": {
"scripts": "ve-confirmedit-hCaptcha/ve.init.mw.hCaptchaSaveErrorHandler.js",
"targets": [
"desktop",
"mobile"
]
}
},
"Hooks": {
"ResourceLoaderGetConfigVars": "HCaptchaHooks::onResourceLoaderGetConfigVars"
},
"attributes": {
"VisualEditor": {
"PluginModules": [
"ext.confirmEdit.hCaptcha.visualEditor"
]
}
},
"manifest_version": 2
}