forked from FHannes/IPBLoginAuth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathextension.json
46 lines (45 loc) · 1.27 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
{
"name": "IPBLoginAuth",
"version": "1.0.1",
"author": "Frédéric Hannes",
"url": "https://www.mediawiki.org/wiki/Extension:IPBAuthLogin",
"descriptionmsg": "ipbloginauth-desc",
"license-name": "GPLv3",
"type": "auth",
"requires": {
"MediaWiki": ">= 1.27.0"
},
"ConfigRegistry": {
"ipbloginauth": "GlobalVarConfig::newInstance"
},
"MessagesDirs": {
"IPBLoginAuth": [
"i18n"
]
},
"AutoloadClasses": {
"IPBLoginAuth\\Auth\\IPBAuthenticationProvider": "includes/auth/IPBAuthenticationProvider.php",
"IPBLoginAuth\\Auth\\IPBAuthenticationRequest": "includes/auth/IPBAuthenticationRequest.php",
"IPBLoginAuth\\IPBAuth": "includes/IPBAuth.php"
},
"AuthManagerAutoConfig": {
"primaryauth": {
"IPBLoginAuth\\Auth\\IPBAuthenticationProvider": {
"class": "IPBLoginAuth\\Auth\\IPBAuthenticationProvider",
"sort": 0
}
}
},
"config": {
"IPBDBHost": "",
"IPBDBUsername": "",
"IPBDBPassword": "",
"IPBDBDatabase": "",
"IPBDBPrefix": "",
"IPBVersion": "3",
"IPBGroupValidating": 1,
"IPBGroupMap": {
"sysop": 4
}
}
}