forked from macopedia/t3ext-oidc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
34 lines (33 loc) · 889 Bytes
/
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
32
33
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'OpenID Connect Authentication',
'description' => 'This extension uses OpenID Connect to authenticate users.',
'category' => 'services',
'author' => 'Xavier Perseguers',
'author_company' => 'Causal Sàrl',
'author_email' => '[email protected]',
'shy' => '',
'dependencies' => '',
'conflicts' => '',
'priority' => '',
'module' => '',
'state' => 'beta',
'internal' => '',
'uploadfolder' => 0,
'createDirs' => '',
'modify_tables' => '',
'clearCacheOnLoad' => 0,
'lockType' => '',
'version' => '0.5.0',
'constraints' => [
'depends' => [
'php' => '7.0.0-7.3.99',
'typo3' => '8.7.0-9.5.99',
],
'conflicts' => [],
'suggests' => [],
],
'autoload' => [
'psr-4' => ['Causal\\Oidc\\' => 'Classes']
],
];