forked from miniOrangeDev/miniorange-saml-typo3-sso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
31 lines (29 loc) · 1.26 KB
/
ext_emconf.php
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
<?php
/***********************************************************************************8
* Extension Manager/Repository config file for ext: "miniorange_saml"
******************************************************************************8*****/
$EM_CONF[$_EXTKEY] = [
'title' => 'Miniorange Saml',
'description' => 'Miniorange Saml (SSO) provides SSO/Login to your TYPO3 site with any SAML compliant Identity Provider (ACTIVE SUPPORT for IdP config). It allows users residing at SAML 2.0 capable Identity Provider to login to your TYPO3 website. We support all known IdPs – Google Apps, ADFS, Azure AD, Okta, Salesforce, Shibboleth, SimpleSAMLphp, OpenAM, Centrify, Ping, RSA, IBM, Oracle, OneLogin, Bitium, WSO2, NetIQ etc.',
'category' => 'plugin',
'author' => 'Miniorange',
'author_email' => '[email protected]',
'state' => 'beta',
'uploadfolder' => 0,
'createDirs' => '',
'clearCacheOnLoad' => 0,
'version' => '2.0.1',
'constraints' => [
'depends' => [
'typo3' => '10.4.3-11.5.8',
],
'conflicts' => [],
'suggests' => [],
],
'autoload' => [
'psr-4' => [
'Miniorange\\MiniorangeSaml\\' => 'Classes',
"Miniorange\\Helper\\" => 'Helper'
]
],
];