-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
ext_emconf.php
executable file
·33 lines (32 loc) · 923 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' => 'Extra fields for TYPO3 frontend users',
'description' => 'Extra fields for TYPO3 frontend users and drop-in replacement for the removed FrontEndUser Core model',
'version' => '6.3.0',
'category' => 'misc',
'constraints' => [
'depends' => [
'php' => '7.4.0-8.3.99',
'typo3' => '11.5.40-12.4.99',
'extbase' => '11.5.40-12.4.99',
],
'conflicts' => [
],
'suggests' => [
],
],
'state' => 'stable',
'author' => 'Oliver Klee',
'author_email' => '[email protected]',
'author_company' => 'oliverklee.de',
'autoload' => [
'psr-4' => [
'OliverKlee\\FeUserExtraFields\\' => 'Classes/',
],
],
'autoload-dev' => [
'psr-4' => [
'OliverKlee\\FeUserExtraFields\\Tests\\' => 'Tests/',
],
],
];