From 9caad5f81a2133669376187f6bd35fb277fd36a9 Mon Sep 17 00:00:00 2001 From: mhofmann Date: Fri, 20 Dec 2024 13:41:07 +0100 Subject: [PATCH] [TASK] Add external installed dependencies For legacy mode installed version, the system ships self-installed packages for `DeepL` and `Http\Discovery\`. As composer-based installations ignore autoloading in `ext_emconf.php`, this can be safely added to ensure external dependencies installed during release will work out of the box. --- ext_emconf.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext_emconf.php b/ext_emconf.php index 1796c11..2f9334c 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -34,6 +34,8 @@ 'autoload' => [ 'psr-4' => [ 'WebVision\\Deepltranslate\\Core\\' => 'Classes', + 'DeepL\\' => 'vendor/deeplcom/deepl-php/src', + 'Http\\Discovery\\' => 'vendor/php-http/discovery/src', ], ], ];