-
Notifications
You must be signed in to change notification settings - Fork 9
/
ext_emconf.php
executable file
·34 lines (33 loc) · 1.35 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
<?php
$EM_CONF[$_EXTKEY] = [
'title' => '(Sudhaus7) XLS Importer',
'description' => 'A simple importer to import data into the database',
'category' => 'module',
'version' => '5.0.5',
'state' => 'stable',
'author' => 'Frank Berger, Markus Hofmann & Daniel Simon',
'author_email' => '[email protected]',
'author_company' => 'Sudhaus7, a label of B-Factor GmbH',
'constraints' => [
'depends' => [
'typo3' => '11.5.0-12.4.99',
],
'conflicts' => [
],
'suggests' => [
],
],
'autoload' => [
'psr-4' => [
'SUDHAUS7\\Xlsimport\\' => 'Classes',
'ZipStream\\' => 'Resources/Private/Php/maennchen/zipstream-php/src',
'Symfony\\Polyfill\\Mbstring\\' => 'Resources/Private/Php/symfony/polyfill-mbstring',
'Psr\\SimpleCache\\' => 'Resources/Private/Php/psr/simple-cache/src',
'Psr\\Http\\Message\\' => 'Resources/Private/Php/psr/http-message/src',
'PhpOffice\\PhpSpreadsheet\\' => 'Resources/Private/Php/phpoffice/phpspreadsheet/src/PhpSpreadsheet',
'MyCLabs\\Enum\\' => 'Resources/Private/Php/myclabs/php-enum/src',
'Matrix\\' => 'Resources/Private/Php/markbaker/matrix/classes/src',
'Complex\\' => 'Resources/Private/Php/markbaker/complex/classes/src',
],
],
];