This repository has been archived by the owner on Jan 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathextension.json
84 lines (84 loc) · 2.28 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
81
82
83
84
{
"name": "WSOAuth",
"version": "4.0",
"namemsg": "wsoauth-extensionname",
"url": "https://www.mediawiki.org/wiki/Extension:WSOAuth",
"type": "other",
"author": [
"Marijn van Wezel [https://www.mediawiki.org/wiki/User:Xxmarijnw <xxmarijnw>]",
"others"
],
"descriptionmsg": "wsoauth-desc",
"license-name": "MIT",
"requires": {
"MediaWiki": ">= 1.31.0",
"extensions": {
"PluggableAuth": ">= 5.0"
}
},
"MessagesDirs": {
"WSOAuth": [
"i18n"
]
},
"ExtensionMessagesFiles": {
"WSOAuthMagic": "i18n/WSOAuth.i18n.php"
},
"AutoloadClasses": {
"WSOAuth": "src/WSOAuth.php",
"AuthProviderFramework": "src/AuthProviderFramework.php",
"AuthProvider": "src/AuthProvider.php"
},
"AutoloadNamespaces": {
"AuthenticationProvider\\": "src/AuthenticationProvider/",
"Exception\\": "src/Exception/"
},
"Hooks": {
"PluggableAuthPopulateGroups": "WSOAuth::onPluggableAuthPopulateGroups",
"LoadExtensionSchemaUpdates": "WSOAuth::onLoadExtensionSchemaUpdates"
},
"config": {
"PluggableAuth_Class": {
"value": "WSOAuth",
"descriptionmsg": "wsoauth-pluggable-auth-class-desc"
},
"PluggableAuth_ButtonLabelMessage": {
"value": "wsoauth-pluggable-auth-button-label-message",
"descriptionmsg": "wsoauth-pluggable-auth-button-label-message-desc"
},
"OAuthUri": {
"value": false,
"descriptionmsg": "wsoauth-uri-desc"
},
"OAuthClientId": {
"value": false,
"descriptionmsg": "wsoauth-client-id-desc"
},
"OAuthClientSecret": {
"value": false,
"descriptionmsg": "wsoauth-client-secret-desc"
},
"OAuthRedirectUri": {
"value": false,
"descriptionmsg": "wsoauth-redirect-uri-desc"
},
"OAuthCustomAuthProviders": {
"value": false,
"descriptionmsg": "wsoauth-auth-providers-desc"
},
"OAuthAuthProvider": {
"value": "mediawiki",
"descriptionmsg": "wsoauth-auth-provider-desc"
},
"OAuthAutoPopulateGroups": {
"value": [],
"descriptionmsg": "wsoauth-auto-populate-groups-desc"
},
"OAuthMigrateUsersByUsername": {
"value": false,
"descriptionmsg": "wsoauth-migrate-users-by-username-desc"
}
},
"load_composer_autoloader": true,
"manifest_version": 2
}