-
Notifications
You must be signed in to change notification settings - Fork 118
/
ext_emconf.php
33 lines (31 loc) · 1.04 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
32
33
<?php
/***************************************************************
* Extension Manager/Repository config file for ext: "femanager"
***************************************************************/
$EM_CONF[$_EXTKEY] = [
'title' => 'femanager',
'description' => 'TYPO3 Frontend User Registration and Management based on
Extbase and Fluid and on TYPO3 12 and the possibility to extend it.',
'category' => 'plugin',
'author' => 'Alexander Kellner, Stefan Busemann, Daniel Hoffmann',
'author_email' => '[email protected]',
'author_company' => 'in2code.de - Wir leben TYPO3',
'state' => 'stable',
'version' => '8.2.1',
'constraints' => [
'depends' => [
'typo3' => '12.0.0-12.4.99',
'php' => '8.1.0-',
],
'conflicts' => [],
'suggests' => [
'sr_freecap' => '2.3.0-2.99.99',
'static_info_tables' => '6.9.0-6.99.99',
],
],
'autoload' => [
'psr-4' => [
'In2code\\Femanager\\' => 'Classes'
]
],
];