forked from FluidTYPO3/flux
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ext_emconf.php
56 lines (56 loc) · 1.14 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
56
<?php
$EM_CONF[$_EXTKEY] = array (
'title' => 'Flux: Fluid FlexForms',
'description' => 'Backend form and frontend content rendering assistance API with focus on productivity.',
'category' => 'misc',
'shy' => 0,
'version' => '9.1.0',
'dependencies' => 'cms',
'conflicts' => '',
'priority' => 'top',
'loadOrder' => '',
'module' => '',
'state' => 'beta',
'uploadfolder' => 0,
'createDirs' => '',
'modify_tables' => '',
'clearcacheonload' => 1,
'lockType' => '',
'author' => 'FluidTYPO3 Team',
'author_email' => '[email protected]',
'author_company' => '',
'CGLcompliance' => '',
'CGLcompliance_note' => '',
'constraints' =>
array (
'depends' =>
array (
'typo3' => '8.7.0-9.5.99',
'php' => '7.1.0-7.3.99',
),
'conflicts' =>
array (
),
'suggests' =>
array (
),
),
'_md5_values_when_last_written' => '',
'suggests' =>
array (
),
'autoload' =>
array (
'psr-4' =>
array (
'FluidTYPO3\\Flux\\' => 'Classes/',
),
),
'autoload-dev' =>
array (
'psr-4' =>
array (
'FluidTYPO3\\Flux\\Tests\\' => 'Tests/',
),
),
);