-
Notifications
You must be signed in to change notification settings - Fork 3
/
ext_emconf.php
40 lines (39 loc) · 1.03 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
<?php
/**
* Extension Manager/Repository config file for ext "mktools".
*/
//
// Extension Manager/Repository config file for ext "mktools".
//
// Manual updates:
// Only the data in the array - everything else is removed by next
// writing. "version" and "dependencies" must not be touched!
//
$EM_CONF['mktools'] = [
'title' => 'MK Tools',
'description' => 'Collection of some useful tools',
'category' => 'misc',
'author' => 'DMK E-Business GmbH',
'author_email' => 'dev@dmk-ebusiness.de',
'author_company' => 'DMK E-Business GmbH',
'shy' => '',
'dependencies' => 'rn_base',
'version' => '12.0.2',
'conflicts' => '',
'priority' => '',
'module' => '',
'state' => 'stable',
'internal' => '',
'uploadfolder' => 0,
'modify_tables' => '',
'clearCacheOnLoad' => 0,
'lockType' => '',
'constraints' => [
'depends' => [
'rn_base' => '1.15.0-',
'typo3' => '11.5.7-12.4.99',
],
'conflicts' => [],
'suggests' => [],
],
];