summaryrefslogtreecommitdiff
path: root/extension.json
blob: b7220d8a2701db215d6fd530a315d295633c22aa (plain)
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
{
    "name": "GitTimeline",
    "author": [
        "Cyrille Bagard"
    ],
    "url": "https://www.mediawiki.org/wiki/Extension:Example",
    "description": "This extension allows to include an external file in a safe way.",
    "version": "1.0",
    "license-name": "GPL-2.0+",
    "type": "other",
    "AutoloadClasses": {
        "GitTimeline": "GitTimeline_body.php"
    },
    "Hooks": {
        "ParserFirstCallInit": [
            "GitTimeline::onParserInit"
        ],
        "BeforePageDisplay": [
            "GitTimeline::onBeforePageDisplay"
        ]
    },
    "ResourceModules": {
        "ext.gittimeline": {
            "styles": {
                "gittimeline.css": {
                    "media": "screen"
                }
            }
        }
    },
    "ResourceFileModulePaths": {
        "localBasePath": ""
    }
}