-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathextension.json
80 lines (80 loc) · 1.72 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "WSOAuth",
"version": "9.0.0",
"namemsg": "wsoauth-extensionname",
"url": "https://www.mediawiki.org/wiki/Extension:WSOAuth",
"type": "other",
"author": [
"[https://www.mediawiki.org/wiki/User:Xxmarijnw Marijn van Wezel]"
],
"descriptionmsg": "wsoauth-desc",
"license-name": "MIT",
"requires": {
"MediaWiki": ">= 1.35.0",
"extensions": {
"PluggableAuth": ">= 7.0"
}
},
"MessagesDirs": {
"WSOAuth": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"WSOAuthAlias": "WSOAuth.i18n.alias.php"
},
"AutoloadNamespaces": {
"WSOAuth\\": "src/"
},
"Hooks": {
"GetPreferences": "main",
"LoadExtensionSchemaUpdates": "SchemaUpdater"
},
"HookHandlers": {
"main": {
"class": "\\WSOAuth\\WSOAuthHooks"
},
"SchemaUpdater": {
"class": "\\WSOAuth\\WSOAuthSchemaUpdater"
}
},
"config": {
"OAuthCustomAuthProviders": {
"value": false,
"descriptionmsg": "wsoauth-auth-providers-desc"
},
"OAuthAutoPopulateGroups": {
"value": [],
"descriptionmsg": "wsoauth-auto-populate-groups-desc"
},
"OAuthMigrateUsersByUsername": {
"value": false,
"descriptionmsg": "wsoauth-migrate-users-by-username-desc"
},
"OAuthDisallowRemoteOnlyAccounts": {
"value": false,
"descriptionmsg": "wsoauth-disallow-remote-only-accounts-desc"
},
"OAuthUseRealNameAsUsername": {
"value": false,
"descriptionmsg": "wsoauth-use-real-name-as-username-desc"
}
},
"SpecialPages": {
"WSOAuthConnectRemote": "\\WSOAuth\\WSOAuthConnectRemoteSpecialPage"
},
"attributes": {
"PluggableAuth": {
"WSOAuth": {
"class": "\\WSOAuth\\WSOAuth",
"services": [
"MainConfig",
"UserNameUtils",
"HookContainer"
]
}
}
},
"load_composer_autoloader": true,
"manifest_version": 2
}