forked from soudis/mediawiki-saml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
64 lines (64 loc) · 1.78 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
{
"name": "miniOrange SAML 2.0 SSO",
"version": "1.1.2",
"author": [
"miniOrange"
],
"url": "https://www.mediawiki.org/wiki/Extension:SamlSingleSignOnAuth",
"descriptionmsg": "miniOrange SAML 2.0 SSO enables user to perform Single Sign On with any SAML 2.0 enabled Identity Provider.",
"license-name": "",
"type": "other",
"AutoloadClasses": {
"SamlSingleSignOnAuth":"SamlSingleSignOnAuth.php",
"SamlSingleSignOnAuthHooks": "SamlSingleSignOnAuth.hooks.php",
"SamlSingleSignOnAuthManager": "SamlSingleSignOnAuth.class.php",
"SpecialHelloWorld": "specials/SpecialHelloWorld.php",
"MoSamlUtilities": "includes/Utilities.php",
"SAML2_Assertion": "includes/Assertion.php",
"SAML2_Response": "includes/Response.php",
"SAML2_LogoutRequest": "includes/LogoutRequest.php",
"XMLSecurityKey": "includes/xmlseclibs.php",
"XMLSecurityDSig": "includes/xmlseclibs.php",
"XMLSecEnc": "includes/xmlseclibs.php"
},
"config": {
"SamlSingleSignOnAuthEnable": true,
"MoSamlHostName": "https://auth.miniorange.com",
"MoSamlIsBrokerOn": false,
"MoSamlLoginBindingType": "HttpRedirect"
},
"ExtensionMessagesFiles": {
"SamlSingleSignOnAuthAlias": "SamlSingleSignOnAuth.i18n.alias.php"
},
"Hooks": {
"UserLoginForm": [
"SamlSingleSignOnAuthHooks::hookLoginForm"
],
"UserLoadAfterLoadFromSession": [
"SamlSingleSignOnAuthHooks::hookUserLoad"
],
"UserLogout": [
"SamlSingleSignOnAuthHooks::hookUserLogout"
]
},
"MessagesDirs": {
"SamlSingleSignOnAuth": [
"i18n"
]
},
"ResourceModules": {
"ext.SamlSingleSignOnAuth.foo": {
"styles": [
"modules/ext.SamlSingleSignOnAuth.css"
],
"messages": [],
"dependencies": [
]
}
},
"ResourceFileModulePaths": {
"localBasePath": "",
"remoteExtPath": "SamlSingleSignOnAuth"
},
"manifest_version": 1
}