-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathextension.json
52 lines (52 loc) · 1.61 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
{
"name": "PubmedParser",
"type": "parserhook",
"author": [
"[https://github.com/bovender Daniel Kraus (bovender)]",
"[https://github.com/kghbln Karsten Hoffmeyer (kghbln)]",
"[https://github.com/strimo378 Timo Stripf (strimo378)]",
"[https://github.com/jeffw16 Jeffrey Wang (jeffw16)]",
"[https://github.com/vedmaka Vedmaka]"
],
"url": "https://www.mediawiki.org/wiki/Extension:PubmedParser",
"version": "6.0.0",
"license-name": "GPL-2.0-or-later",
"descriptionmsg": "pubmedparser-desc",
"requires": {
"MediaWiki": ">= 1.42.0"
},
"AutoloadClasses": {
"blabla": "blabla.php"
},
"TestAutoloadClasses": {
"blablasss": "blabla.php"
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\PubmedParser\\": "includes/"
},
"Hooks": {
"ParserFirstCallInit": ["MediaWiki\\Extension\\PubmedParser\\Extension::setup"],
"LoadExtensionSchemaUpdates": ["MediaWiki\\Extension\\PubmedParser\\Hooks::onLoadExtensionSchemaUpdates"],
"UnitTestsList": ["MediaWiki\\Extension\\PubmedParser\\Hooks::onUnitTestsList"]
},
"ExtensionMessagesFiles": {
"PubmedParserMagic": "includes/Magic.php"
},
"MessagesDirs": {
"PubmedParser": ["i18n"]
},
"ConfigRegistry": {
"PubmedParser": "GlobalVarConfig::newInstance"
},
"config": {
"PubmedParserApiKey": {
"value": "",
"description": "Optional site-wide NCBI API key to lift the rate limit."
},
"PubmedParserRemoteFetchMethod": {
"value": "file_get_contents",
"description": "Use either 'file_get_contents' (default) or 'curl' to fetch article data."
}
},
"manifest_version": 2
}