Skip to content

Commit

Permalink
[BUGFIX] Require PHP version in ext_emconf.php
Browse files Browse the repository at this point in the history
EXT: wv_deepltranslate requires at least PHP 7.4, as stated in its
`composer.json` file. However, if the TYPO3 instance is a
non-Composer-based installation, the extension will be installed
regardless of the used PHP version, leading to hard crashes.

To catch this case, the PHP version constraint is added to
`ext_emconf.php`.

Fixes: web-vision#170
  • Loading branch information
andreaskienast committed Mar 19, 2023
1 parent 15b258d commit 7a16e80
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
'version' => '3.3.0',
'constraints' => [
'depends' => [
'php' => '7.4.0-8.1.99',
'typo3' => '9.5.1-11.5.99',
],
'conflicts' => [],
Expand Down

0 comments on commit 7a16e80

Please sign in to comment.