-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
extension.json
45 lines (45 loc) · 922 Bytes
/
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
{
"name": "BCmath",
"version": "0.1.0",
"author": [
"John Erling Blad"
],
"url": "https://www.mediawiki.org/wiki/Extension:BCmath",
"descriptionmsg": "bcmath-desc",
"license-name": "GPL-2.0",
"type": "other",
"requires": {
"MediaWiki": ">= 1.33",
"extensions": {
"Scribunto": "*"
}
},
"AutoloadClasses": {
"BCmath\\Hooks":
"includes/Hooks.php",
"BCmath\\LuaLibBCmath":
"includes/LuaLibrary/LuaLibBCmath.php"
},
"config_prefix": "wgBCmath",
"config": {
"ExtFiltering": {
"value": true,
"description": "Turn on additional sanitizion of numbers"
}
},
"callback": "BCmath\\Hooks::onExtensionSetup",
"Hooks": {
"ScribuntoExternalLibraries": [
"BCmath\\Hooks::onRegisterScribuntoLibraries"
],
"ScribuntoExternalLibraryPaths": [
"BCmath\\Hooks::onRegisterScribuntoExternalLibraryPaths"
]
},
"MessagesDirs": {
"BCmath": [
"i18n"
]
},
"manifest_version": 2
}