-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension.json
More file actions
45 lines (45 loc) · 836 Bytes
/
extension.json
File metadata and controls
45 lines (45 loc) · 836 Bytes
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
{
"name": "Wikifab",
"version": "1.0.0",
"author": [
"Pierre Boutet"
],
"url": "https://github.com/wikifab/ext-wikifab",
"descriptionmsg": "ext-wikifab-desc",
"license-name": "MIT",
"type": "other",
"requires": {
"MediaWiki": ">= 1.31.0",
"extensions": {
"Page Forms": "*"
}
},
"callback": "Wikifab\\Hooks::onRegistration",
"ExtensionFunctions": [
"Wikifab\\Hooks::initialize"
],
"Hooks": {
"BeforePageDisplay": [
"Wikifab\\Hooks::onBeforePageDisplay"
]
},
"MessagesDirs": {
"Wikifab": [
"i18n"
]
},
"ResourceModules": {
"ext.wikifab.css": {
"position": "top",
"styles": "ressources/wikifab.css"
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "Wikifab"
},
"AutoloadClasses": {
"Wikifab\\Hooks": "includes/Hooks.php"
},
"manifest_version": 1
}