-
Notifications
You must be signed in to change notification settings - Fork 3
/
ext_emconf.php
executable file
·43 lines (42 loc) · 1.18 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
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Realty Manager',
'description' => 'Provides a plugin that displays realty objects (properties, real estate), including an image gallery for each object.',
'version' => '3.0.2',
'category' => 'plugin',
'constraints' => [
'depends' => [
'php' => '5.5.0-7.2.99',
'typo3' => '7.6.23-8.7.99',
'extbase' => '7.6.23-8.7.99',
'fluid' => '7.6.23-8.7.99',
'oelib' => '2.3.5-3.9.99',
'mkforms' => '9.5.1-9.5.99',
'static_info_tables' => '6.4.0-',
],
'conflicts' => [
'dbal' => '',
],
'suggests' => [
'sr_feuser_register' => '',
],
],
'state' => 'stable',
'uploadfolder' => true,
'createDirs' => 'uploads/tx_realty/',
'clearCacheOnLoad' => true,
'author' => 'Oliver Klee',
'author_email' => '[email protected]',
'author_company' => 'oliverklee.de',
'autoload' => [
'classmap' => [
'Classes',
'Ajax',
'lib',
'Mapper',
'Model',
'pi1',
'Tests',
],
],
];