-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathextension.json
63 lines (62 loc) · 1.6 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "ForumSsoProvider",
"version": "2.1.0",
"author": [
"Simple Machines",
"SleePy",
"Vekseid"
],
"url": "https://github.com/SimpleMachines/smf-mw-auth",
"description": "Users a Forum Software to provide MediaWiki single-sign on.",
"license-name": "BSD",
"type": "other",
"requires": {
"MediaWiki": ">= 1.38.0"
},
"config": {
"_prefix": "wgFSP",
"Path": "",
"NameStyle": "smf",
"Software": "elk1.1",
"SuperGroups": [],
"InterfaceGroups": [1],
"AdminGroups": [1],
"AllowGroups": [],
"DenyGroups:": []
},
"SessionProviders": {
"ForumSsoProvider": {
"class": "ForumSsoProvider",
"args": []
}
},
"AuthManagerAutoConfig": {
"primaryauth": {
"ForumAuthManager": {
"class": "ForumAuthManager",
"args": []
}
}
},
"DefaultUserOptions": {
"forum_last_update": 0
},
"Hooks": {
"SpecialPageBeforeExecute": [
"ForumSsoProvider::onSpecialPageBeforeExecute"
]
},
"AutoloadClasses": {
"ForumSsoProvider": "ForumSsoProvider.php",
"ForumAuthManager": "ForumAuthManager.php",
"ForumDatabaseProvider": "DatabaseProvider/base.php",
"ForumDatabaseProviderMySQLi": "DatabaseProvider/MySQLi.php",
"ForumDatabaseProviderPDO": "DatabaseProvider/PDO.php",
"ForumSoftwareProvider": "ForumProvider/base.php",
"ForumSoftwareProvidersmf20": "ForumProvider/smf2.0.php",
"ForumSoftwareProvidersmf21": "ForumProvider/smf2.1.php",
"ForumSoftwareProviderelk10": "ForumProvider/elk1.0.php",
"ForumSoftwareProviderelk11": "ForumProvider/elk1.1.php"
},
"manifest_version": 1
}