forked from TYPO3-Console/TYPO3-Console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_emconf.php
55 lines (55 loc) · 1.05 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
48
49
50
51
52
53
54
55
<?php
$EM_CONF[$_EXTKEY] = array (
'title' => 'TYPO3 Console',
'description' => 'A reliable and powerful command line interface for TYPO3 CMS',
'category' => 'cli',
'shy' => 1,
'dependencies' => '',
'conflicts' => '',
'priority' => '',
'loadOrder' => '',
'module' => 'mod',
'state' => 'stable',
'internal' => 0,
'uploadfolder' => 0,
'createDirs' => '',
'modify_tables' => '',
'clearCacheOnLoad' => 0,
'lockType' => '',
'author' => 'Helmut Hummel',
'author_email' => '[email protected]',
'author_company' => '',
'CGLcompliance' => '',
'CGLcompliance_note' => '',
'version' => '2.0.0',
'constraints' =>
array (
'depends' =>
array (
'typo3' => '7.6.0-8.1.99',
),
'conflicts' =>
array (
),
'suggests' =>
array (
),
),
'suggests' =>
array (
),
'autoload' =>
array (
'psr-4' =>
array (
'Helhum\\Typo3Console\\' => 'Classes',
),
),
'autoload-dev' =>
array (
'psr-4' =>
array (
'Helhum\\Typo3Console\\Tests\\' => 'Tests',
),
),
);