-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_emconf.php
32 lines (31 loc) · 925 Bytes
/
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
<?php
/**
* Extension Manager/Repository config file for ext "importer".
* @phpstan-ignore-next-line
*/
$EM_CONF[$_EXTKEY] = [
'title' => 'Importer',
'description' => 'A TYPO3 extension which contains a failure safe framework for building structured import processes. It features a backend module and queue worker commands.',
'category' => 'extensions',
'constraints' => [
'depends' => [
'typo3' => '13.4.0-13.9.99',
'fluid_styled_content' => '13.4.0-13.9.99',
'rte_ckeditor' => '13.4.0-13.9.99',
],
'conflicts' => [
],
],
'autoload' => [
'psr-4' => [
'Itx\\Importer\\' => 'Classes',
],
],
'state' => 'stable',
'uploadfolder' => 0,
'createDirs' => '',
'clearCacheOnLoad' => 1,
'author' => 'it.x informationssysteme gmbh',
'author_email' => '',
'version' => '2.0.0',
];