forked from Leuchtfeuer/auth0-for-typo3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
29 lines (28 loc) · 901 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
<?php
$EM_CONF['auth0'] = [
'title' => 'Auth0 for TYPO3',
'description' => 'This extension allows you to log into a TYPO3 backend or frontend via Auth0. Auth0 is the solution you need for web, mobile, IoT, and internal applications. Loved by developers and trusted by enterprises.',
'version' => '5.0.4',
'category' => 'misc',
'constraints' => [
'depends' => [
'typo3' => '11.5.99-12.4.99',
],
'conflicts' => [],
'suggests' => [],
],
'state' => 'stable',
'author' => 'Dev Leuchtfeuer',
'author_email' => '[email protected]',
'author_company' => 'Leuchtfeuer Digital Marketing',
'autoload' => [
'psr-4' => [
'Leuchtfeuer\\Auth0\\' => 'Classes',
],
],
'autoload-dev' => [
'psr-4' => [
'Leuchtfeuer\\Auth0\\Tests\\' => 'Classes/Tests',
],
],
];