forked from thieleundklose/tk-typo3-autotranslate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_emconf.php
28 lines (27 loc) · 832 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
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'Autotranslate content with DeepL',
'description' => 'This extension provides automatic translation of pages and content elements via DeepL API.',
'category' => 'be',
'author' => 'Mike Zimmer',
'author_company' => 'Thiele & Klose GmbH',
'author_email' => '[email protected]',
'state' => 'stable',
'version' => '1.0.2',
'constraints' => [
'depends' => [
'typo3' => '10.4.0-12.4.99',
'php' => '7.4.0-8.3.99',
],
'conflicts' => [],
'suggests' => [
'news' => '10.0.0-10.99.99',
],
],
'autoload' => [
'psr-4' => [
'ThieleUndKlose\\Autotranslate\\' => 'Classes/',
'DeepL\\' => 'Resources/Private/Deeplcom/DeeplPhp/src/',
],
],
];