-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
28 lines (28 loc) · 929 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
{
"name": "CalendarConverter",
"author": "Chunliang Lyu",
"url": "https://github.com/cllu/MediaWiki-CalendarConverter",
"description": "Provide parser functions and Scribunto Lua library to convert a date between different calendars.",
"version": "1.0",
"license-name": "MIT",
"type": "other",
"manifest_version": 1,
"Hooks": {
"ParserFirstCallInit": [
"CalendarConverterHooks::onParserFirstCallInit"
],
"ScribuntoExternalLibraries": [
"CalendarConverterHooks::onScribuntoExternalLibraries"
]
},
"AutoloadClasses": {
"Lunar": "LunarSolarConverter.class.php",
"Solar": "LunarSolarConverter.class.php",
"LunarSolarConverter": "LunarSolarConverter.class.php",
"CalendarConverterLua": "CalendarConverterLua.php",
"CalendarConverterHooks": "CalendarConverter.hooks.php"
},
"ExtensionMessagesFiles": {
"CalenderConverter": "CalendarConverter.i18n.php"
}
}