-
Notifications
You must be signed in to change notification settings - Fork 1
/
ext_emconf.php
35 lines (33 loc) · 970 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
34
35
<?php
/**
* Frontend User Extension
*
* @copyright Copyright (c) 2022 Your Dev Team Global (https://ydt-global.com/)
* @author YDT Global Team <[email protected]>
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'Frontend User',
'description' => 'The template-based plugin for managing website users on the TYPO3 frontend',
'version' => '1.1.1',
'category' => 'fe',
'constraints' => [
'depends' => [
'typo3' => '11.5.0-11.99.99',
'extbase' => '11.5.0-11.99.99',
'fluid' => '11.5.0-11.99.99',
'frontend' => '11.5.0-11.99.99',
],
'conflicts' => [],
'suggests' => [],
],
'state' => 'stable',
'clearCacheOnLoad' => 1,
'author_email' => '[email protected]',
'author' => 'YDT Global Team',
'author_company' => 'Your Dev Team Global',
'autoload' => [
'psr-4' => [
'Ydt\\FrontendUser\\' => 'Classes',
],
],
];