-
Notifications
You must be signed in to change notification settings - Fork 1
/
ext_emconf.php
executable file
·35 lines (34 loc) · 1.36 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
$EM_CONF[$_EXTKEY] = [
'title' => 'Calien - XLS Exporter',
'description' => 'Excel exporter, fully configurable for every table',
'category' => 'module',
'author' => 'Markus Hofmann & Frank Berger',
'author_email' => '[email protected]',
'author_company' => '',
'state' => 'beta',
'version' => '3.1.8',
'constraints' => [
'depends' => [
'typo3' => '11.5.0-11.5.99',
],
'conflicts' => [
],
'suggests' => [
],
],
'autoload' => [
'psr-4' => [
'Calien\\Xlsexport\\' => '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',
'Psr\\Http\\Client\\' => 'Resources/Private/Php/psr/http-client/src',
'PhpOffice\\PhpSpreadsheet\\' => 'Resources/Private/Php/phpoffice/phpspreadsheet/src',
'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',
],
],
];