-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathext_emconf.php
41 lines (40 loc) · 1.32 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
36
37
38
39
40
41
<?php
$EM_CONF[$_EXTKEY] = [
'title' => 'DeepL Translate',
'description' => 'This extension provides option to translate content element, and TCA record texts to DeepL supported languages.',
'category' => 'backend',
'author' => 'web-vision GmbH Team',
'author_company' => 'web-vision GmbH',
'author_email' => '[email protected]',
'state' => 'stable',
'version' => '5.0.0',
'constraints' => [
'depends' => [
'php' => '8.1.0-8.4.99',
'typo3' => '12.4.0-13.4.99',
'backend' => '12.4.0-13.4.99',
'extbase' => '12.4.0-13.4.99',
'fluid' => '12.4.0-13.4.99',
'setup' => '12.4.0-13.4.99',
],
'conflicts' => [
'recordlist_thumbnail' => '*',
'wv_deepltranslate' => '*',
],
'suggests' => [
'container' => '*',
'dashboard' => '*',
'install' => '*',
'enable_translated_content' => '*',
'deepltranslate_assets' => '*',
'deepltranslate_glossary' => '*',
],
],
'autoload' => [
'psr-4' => [
'WebVision\\Deepltranslate\\Core\\' => 'Classes',
'DeepL\\' => 'vendor/deeplcom/deepl-php/src',
'Http\\Discovery\\' => 'vendor/php-http/discovery/src',
],
],
];