-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathextension.json
46 lines (46 loc) · 998 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
{
"name": "AutoCreatePage",
"version": "0.9",
"author": [
"Universal Omega",
"Markus Krötzsch",
"Daniel Herzig"
],
"license-name": "GPL-2.0-or-later",
"url": "https://www.mediawiki.org/wiki/Extension:AutoCreatePage",
"descriptionmsg": "autocreatepage-desc",
"type": "parserhook",
"requires": {
"MediaWiki": ">= 1.36.0"
},
"ExtensionMessagesFiles": {
"AutoCreatePageMagic": "AutoCreatePage.i18n.magic.php"
},
"MessagesDirs": {
"AutoCreatePage": [
"i18n"
]
},
"AutoloadClasses": {
"AutoCreatePageHooks": "src/AutoCreatePageHooks.php"
},
"Hooks": {
"ParserFirstCallInit": "AutoCreatePageHooks::onParserFirstCallInit",
"RevisionDataUpdates": "AutoCreatePageHooks::onRevisionDataUpdates"
},
"config": {
"AutoCreatePageIgnoreEmptyTitle": {
"value": false
},
"AutoCreatePageIgnoreEmptyContent": {
"value": false
},
"AutoCreatePageMaxRecursion": {
"value": 1
},
"AutoCreatePageNamespaces": {
"value": []
}
},
"manifest_version": 2
}