forked from a-r-m-i-n/dce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_emconf.php
38 lines (36 loc) · 1.15 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
34
35
36
37
38
<?php
/* | This extension is made for TYPO3 CMS and is licensed
* | under GNU General Public License.
* |
* | (c) 2012-2022 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' => '2.8.2',
'dependencies' => 'extbase,fluid',
'state' => 'stable',
'uploadfolder' => true,
'modify_tables' => 'tt_content',
'clearcacheonload' => true,
'author' => 'Armin Vieweg',
'author_email' => '[email protected]',
'author_company' => '',
'constraints' => [
'depends' => [
'php' => '7.3.0-7.4.99',
'typo3' => '9.5.0-11.99.99',
],
'conflicts' => [],
'suggests' => [],
],
'suggests' => [],
'autoload' => [
'psr-4' => ['T3\\Dce\\' => 'Classes'],
'classmap' => ['Classes/Compatibility.php'],
],
];
// @codingStandardsIgnoreEnd
// phpcs:enable