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
"phpunit/phpunit": "^9.0" requires php>=7.3 so php versions below can not be tested properly. Php versions below are EOL anyway. Sodium is also not available.
But composer still allows this old php versions. Shouldn't they be dropped?
If somebody wants to install the latest release anyway, it can be forced by composer with --ignore-platform-reqs or sticking to an old release.
The text was updated successfully, but these errors were encountered:
sodium is optional (only gets used if you require that file) just like phpseclib is optional (but used so commonly in practise that it ended up listed as a requirement), but you're right that even CI doesn't run on anything less than 7.3 anymore so maybe we should drop the older versions.
"phpunit/phpunit": "^9.0"
requiresphp>=7.3
so php versions below can not be tested properly. Php versions below are EOL anyway. Sodium is also not available.But composer still allows this old php versions. Shouldn't they be dropped?
If somebody wants to install the latest release anyway, it can be forced by composer with
--ignore-platform-reqs
or sticking to an old release.The text was updated successfully, but these errors were encountered: