-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathext_emconf.php
More file actions
34 lines (33 loc) · 1.01 KB
/
ext_emconf.php
File metadata and controls
34 lines (33 loc) · 1.01 KB
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' => 'DeepL Client Library (deeplcom)',
'description' => 'Provides the official DeepL PHP API Client composer package',
'category' => 'backend',
'author' => 'web-vision GmbH Team',
'author_company' => 'web-vision GmbH',
'author_email' => 'hello@web-vision.de',
'state' => 'stable',
'version' => '1.18.1',
'constraints' => [
'depends' => [
'php' => '8.1.0-8.5.99',
'typo3' => '12.4.0-14.3.99',
'backend' => '12.4.0-14.3.99',
'extbase' => '12.4.0-14.3.99',
'fluid' => '12.4.0-14.3.99',
'setup' => '12.4.0-14.3.99',
],
'conflicts' => [
'ai_translate' => '*',
'dd_deepl' => '*',
'deepltranslate' => '*'
],
'suggests' => [],
],
'autoload' => [
'psr-4' => [
'DeepL\\' => 'vendor/deeplcom/deepl-php/src',
'Http\\Discovery\\' => 'vendor/php-http/discovery/src',
],
],
];