-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathextension.json
82 lines (82 loc) · 2.34 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "ThisIsNotAWiki",
"version": "0.1.0",
"author": "[https://meta.wikimedia.org/wiki/User:Lens0021 Lens0021]",
"url": "https://github.com/lens0021/this-is-not-a-wiki",
"descriptionmsg": "thisisnotawiki-desc",
"license-name": "GPL-3.0-or-later",
"type": "other",
"requires": {
"MediaWiki": ">= 1.37.0"
},
"AutoloadNamespaces": {
"MediaWiki\\Extension\\ThisIsNotAWiki\\": "includes/"
},
"ResourceModules": {
"ext.ThisIsNotAWiki.styles": {
"styles": ["ext.ThisIsNotAWiki.styles.less"]
}
},
"ResourceModuleSkinStyles": {
"vector": {
"+skins.vector.styles": "skins.vector.styles.less"
}
},
"ResourceFileModulePaths": {
"localBasePath": "resources",
"remoteExtPath": "ThisIsNotAWiki/resources"
},
"Hooks": {
"ParserOutputPostCacheTransform": "hider",
"PersonalUrls": "hider",
"SidebarBeforeOutput": "hider",
"SkinAddFooterLinks": "adder",
"BeforePageDisplay": "adder",
"GetLocalURL": "main",
"OutputPageAfterGetHeadLinksArray": "main"
},
"HookHandlers": {
"main": {
"class": "MediaWiki\\Extension\\ThisIsNotAWiki\\Hooks\\Main",
"services": ["MainConfig"]
},
"adder": {
"class": "MediaWiki\\Extension\\ThisIsNotAWiki\\Hooks\\Adder"
},
"hider": {
"class": "MediaWiki\\Extension\\ThisIsNotAWiki\\Hooks\\Hider"
}
},
"config": {
"ThisIsNotAWikiSourceDirectory": {
"value": "/workspace/src",
"description": "Path to the source directory where wikitext files are"
},
"ThisIsNotAWikiHtmlDirectory": {
"value": "/workspace/dist",
"description": "Path to the dist directory of HTML files."
},
"ThisIsNotAWikiStyleDirectory": {
"value": ".",
"description": "Relative Path to the dist directory of CSS files from $wgThisIsNotAWikiHtmlDirectory."
},
"ThisIsNotAWikiFooterUrl": {
"value": "",
"description": "Url that is added as a footer item."
},
"ThisIsNotAWikiEditUrl": {
"value": ""
},
"ThisIsNotAWikiHistoryUrl": {
"value": ""
}
},
"MessagesDirs": {
"ThisIsNotAWiki": ["i18n"]
},
"TestAutoloadNamespaces": {
"MediaWiki\\Extension\\ThisIsNotAWiki\\Tests\\Integration\\": "tests/phpunit/integration/",
"MediaWiki\\Extension\\ThisIsNotAWiki\\Tests\\Unit\\": "tests/phpunit/unit/"
},
"manifest_version": 2
}