-
Notifications
You must be signed in to change notification settings - Fork 52
/
ext_emconf.php
58 lines (58 loc) · 1.25 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
57
58
<?php
$EM_CONF[$_EXTKEY] = array (
'title' => 'Fluid Pages Engine',
'description' => 'Fluid Page Template engine - integrates compact and highly dynamic page templates with all the benefits of Fluid.',
'category' => 'misc',
'author' => 'FluidTYPO3 Team',
'author_email' => '[email protected]',
'author_company' => '',
'shy' => '',
'dependencies' => 'flux',
'conflicts' => 'templavoila',
'priority' => '',
'loadOrder' => '',
'module' => '',
'state' => 'obsolete',
'uploadfolder' => 0,
'createDirs' => '',
'modify_tables' => '',
'clearcacheonload' => 1,
'lockType' => '',
'version' => '5.0.0',
'CGLcompliance' => '',
'CGLcompliance_note' => '',
'constraints' =>
array (
'depends' =>
array (
'php' => '7.1.0-7.2.99',
'typo3' => '8.7.0-9.5.99',
'flux' => '9.0.0-9.99.99',
),
'conflicts' =>
array (
'templavoila' => '',
),
'suggests' =>
array (
),
),
'suggests' =>
array (
),
'_md5_values_when_last_written' => '',
'autoload' =>
array (
'psr-4' =>
array (
'FluidTYPO3\\Fluidpages\\' => 'Classes/',
),
),
'autoload-dev' =>
array (
'psr-4' =>
array (
'FluidTYPO3\\Fluidpages\\Tests\\' => 'Tests/',
),
),
);