-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
56 lines (54 loc) · 1.09 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": "EPSG",
"version": "2.0",
"author": [
"Wouter Rademaker"
],
"url": "https://www.mediawiki.org/wiki/Extension:EPSG",
"descriptionmsg": "epsg-desc",
"license-name": "BSD 2-Clause License",
"type": "parserhook",
"AutoloadClasses": {
"EPSGHooks": "EPSG.hooks.php",
"SpecialEPSGTest": "specials/SpecialEPSGTest.php",
"Common": "includes/Common.php",
"EPSGIO": "includes/epsg.php"
},
"config": {
"EPSG_URL": "https://api.maptiler.com/coordinates/transform/",
"EPSG_KEY": ""
},
"ConfigRegistry": {
"EPSG": "GlobalVarConfig::newInstance"
},
"ExtensionMessagesFiles": {
"EPSGAlias": "EPSG.i18n.alias.php",
"EPSGAlias": "EPSG.i18n.magic.php"
},
"Hooks": {
"ParserFirstCallInit": [
"EPSGHooks::onParserFirstCallInit"
]
},
"MessagesDirs": {
"EPSG": [
"i18n"
]
},
"ResourceModules": {
"ext.epsg.foo": {
"scripts": [],
"styles": [],
"messages": [],
"dependencies": []
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "EPSG"
},
"SpecialPages": {
"EPSGTest": "SpecialEPSGTest"
},
"manifest_version": 1
}