-
Notifications
You must be signed in to change notification settings - Fork 40
/
ext_emconf.php
39 lines (38 loc) · 1.21 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
<?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' => 'hello@web-vision.de',
'state' => 'stable',
'version' => '5.0.0',
'constraints' => [
'depends' => [
'php' => '8.1.0-8.4.99',
'typo3' => '12.4.0-12.4.99',
'backend' => '12.4.0-12.4.99',
'extbase' => '12.4.0-12.4.99',
'fluid' => '12.4.0-12.4.99',
'install' => '12.4.0-12.4.99',
'setup' => '12.4.0-12.4.99',
'scheduler' => '12.4.0-12.4.99',
],
'conflicts' => [
'recordlist_thumbnail' => '*',
'wv_deepltranslate' => '*',
],
'suggests' => [
'container' => '*',
'dashboard' => '*',
'enable_translated_content' => '*',
'deepltranslate_assets' => '*',
],
],
'autoload' => [
'psr-4' => [
'WebVision\\Deepltranslate\\Core\\' => 'Classes',
],
],
];