-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
51 lines (51 loc) · 992 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
46
47
48
49
50
51
{
"manifest_version": 2,
"name": "BibleGet",
"type": "parserhook",
"author": "John R. D'Orazio",
"version": "1.0.0",
"url": "https://github.com/BibleGet-I-O/mediawiki-bibleget/",
"description": "Fetch Bible quotes from the BibleGet API.",
"descriptionmsg": "bibleget-desc",
"license-name": "Apache-2.0",
"requires": {
"MediaWiki": ">= 1.31",
"platform": {
"php": ">= 7.1",
"ext-curl": "*"
}
},
"ExtensionMessagesFiles": {
"BibleGettMagic": "BibleGet.i18n.magic.php"
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\BibleGet\\": "src/"
},
"ResourceModules": {
"ext.BibleGet.scripts": {
"scripts": [],
"dependencies": []
}
},
"MessagesDirs": {
"BibleGet": [
"i18n"
]
},
"HookHandlers": {
"main": {
"class": "MediaWiki\\Extension\\BibleGet\\Hooks"
}
},
"Hooks": {
"ParserFirstCallInit": {
"handler": "main"
}
},
"config": {
"BibleGetDefaultBibleVersion": {
"value": "NABRE"
}
},
"load_composer_autoloader": true
}