forked from a-r-m-i-n/dce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_emconf.php
47 lines (45 loc) · 1.34 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
39
40
41
42
43
44
45
46
47
<?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',
'shy' => 0,
'version' => '2.8.1',
'dependencies' => 'extbase,fluid',
'conflicts' => '',
'priority' => '',
'loadOrder' => '',
'module' => '',
'state' => 'stable',
'uploadfolder' => 1,
'createDirs' => '',
'modify_tables' => 'tt_content',
'clearcacheonload' => 1,
'lockType' => '',
'author' => 'Armin Vieweg',
'author_email' => '[email protected]',
'author_company' => '',
'CGLcompliance' => '',
'CGLcompliance_note' => '',
'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