forked from cobwebch/external_import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
executable file
·35 lines (33 loc) · 1.44 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
<?php
/***********************************************************************
* Extension Manager/Repository config file for ext "external_import". *
***********************************************************************/
$EM_CONF[$_EXTKEY] = [
'title' => 'External Data Import',
'description' => 'Tool for importing data from external sources into the TYPO3 CMS database, using an extended TCA syntax. Provides a BE module, a Scheduler task, a command-line tool and an API.',
'category' => 'module',
'author' => 'Francois Suter (Idéative)',
'author_email' => '[email protected]',
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => '',
'clearCacheOnLoad' => 0,
'author_company' => '',
'version' => '5.1.1',
'constraints' =>
[
'depends' =>
[
'svconnector' => '3.4.0-0.0.0',
'typo3' => '9.5.0-10.4.99',
'scheduler' => '',
],
'conflicts' =>
[
],
'suggests' =>
[
'externalimport_tut' => '2.0.1-0.0.0',
],
],
];