-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathext_emconf.php
31 lines (29 loc) · 925 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
<?php
/* | This extension is made for TYPO3 CMS and is licensed
* | under GNU General Public License.
* |
* | (c) 2012-2024 Armin Vieweg <[email protected]>
*/
// phpcs:disable
$EM_CONF[$_EXTKEY] = [
'title' => 'Dynamic Content Elements (DCE)',
'description' => 'Best flexform based content elements since 2012. With TCA mapping feature, simple backend view and much more features which makes it super easy to create own content element types.',
'category' => 'Backend',
'version' => '3.2.4',
'state' => 'stable',
'author' => 'Armin Vieweg',
'author_email' => '[email protected]',
'author_company' => '',
'constraints' => [
'depends' => [
'typo3' => '12.4.0-13.9.99',
],
'conflicts' => [],
'suggests' => [],
],
'autoload' => [
'psr-4' => ['T3\\Dce\\' => 'Classes'],
],
];
// @codingStandardsIgnoreEnd
// phpcs:enable