You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the documentation, the extension is not yet suitable for PHP 8. However, when tested on a page (11.5.16) with PHP 8.1 with the master branch, it looks quite good overall. There are also merges from @bmack and @benjaminkott that refer to PHP 8.
How is further development planned here?
The text was updated successfully, but these errors were encountered:
additonaly one remark:
php 7.4 and 8.0 are deprecated since some time and for TYPO3 LTS 12 at least PHP 8.1 is required.
but in extes nion Composer.json still max php is 8.0
for php 8.1 this settings may be quired to get extension running:
$GLOBALS['TYPO3_CONF_VARS']['SYS']['errorHandlerErrors'] = E_ALL ^ E_NOTICE;
$GLOBALS['TYPO3_CONF_VARS']['SYS']['exceptionalErrors'] = E_ALL ^ E_NOTICE ^ E_WARNING ^ E_USER_ERROR ^ E_USER_NOTICE ^ E_USER_WARNING;
According to the documentation, the extension is not yet suitable for PHP 8. However, when tested on a page (11.5.16) with PHP 8.1 with the master branch, it looks quite good overall. There are also merges from @bmack and @benjaminkott that refer to PHP 8.
How is further development planned here?
The text was updated successfully, but these errors were encountered: