-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.json
47 lines (47 loc) · 957 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
{
"name": "Timeline",
"version": "1.1.0",
"author": [
"Colin Andrew Ferm"
],
"url": "https://github.com/colinferm/wiki-timeline",
"descriptionmsg": "timeline-desc",
"license-name": "BSD-3-Clause",
"type": "parserhook",
"requires": {
"MediaWiki": ">= 1.32.0"
},
"MessagesDirs": {
"Timeline": [
"i18n"
]
},
"Hooks": {
"ParserFirstCallInit": [
"TimelineHook::init"
],
"SkinAfterBottomScripts": [
"TimelineLib::ursTimelineBottomScripts"
],
"BeforePageDisplay": [
"TimelineLib::ursTimelineHeaderScripts"
]
},
"APIModules": {
"timeline": "TimelineAPI"
},
"SpecialPages": {
"Timeline": "TimelineSpecialPage"
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "Timeline"
},
"AutoloadClasses": {
"TimelineHook": "TimelineHook.php",
"TimelineLib": "TimelineLib.php",
"TimelineSpecialPage": "TimelineSpecialPage.php",
"TimelineAPI": "TimelineAPI.php"
},
"manifest_version": 1
}