-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
37 lines (36 loc) · 1.22 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
{
"name": "Typography",
"author": ["Spas Z. Spasov"],
"url": "https://github.com/metalevel-tech/mw-Typography",
"version": "0.0.1 beta",
"license-name": "GPL-3.0+",
"type": "other",
"description": "For more information: https://github.com/metalevel-tech/mw-Typography",
"descriptionmsg": "typography-desc",
"manifest_version": 1,
"requires": {
"MediaWiki": ">= 1.30.0"
},
"MessagesDirs": {
"Typography": [
"i18n"
]
},
"ResourceModules": {
"TypographyScriptsAndStyles": {
"scripts": "TypographyCleanClipboard.js",
"styles": "TypographyStyle.css"
}
},
"ResourceFileModulePaths": {
"localBasePath": "modules",
"remoteExtPath": "Typography"
},
"AutoloadClasses": {
"TypographyHooks": "Typography.hooks.php"
},
"Hooks": {
"OutputPageBeforeHTML": "TypographyHooks::onOutputPageBeforeHTML",
"BeforePageDisplay": "TypographyHooks::onBeforePageDisplay"
}
}