-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
56 lines (56 loc) · 1.01 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
{
"name": "Sentry",
"version": "0.1",
"author": "xwbx",
"url": "https://github.com/MooncellWiki/mediawiki-extensions-Sentry",
"descriptionmsg": "sentry-desc",
"license-name": "MIT",
"type": "other",
"requires": {
"MediaWiki": ">= 1.35.0"
},
"MessagesDirs": {
"Sentry": [
"i18n"
]
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\Sentry\\": "includes"
},
"Hooks": {
"LogException": "main"
},
"HookHandlers": {
"main": {
"class": "MediaWiki\\Extension\\Sentry\\SentryHooks",
"services": [
"MainConfig"
]
}
},
"config": {
"SentryDsn": {
"value": "",
"description": "SentryDsn"
},
"SentrySampleRate": {
"value": 1.0,
"description": "SentrySampleRate"
},
"SentryTraceSampleRate": {
"value": 0.1,
"description": "SentrySampleRate"
},
"SentryProfileSampleRate": {
"value": 0.1,
"description": "SentrySampleRate"
},
"SentryBeforeSend": {
"value": null
}
},
"ConfigRegistry": {
"Sentry": "GlobalVarConfig::newInstance"
},
"manifest_version": 2
}