1
0
Fork 0
mirror of https://github.com/mlocati/docker-php-extension-installer synced 2025-05-10 09:02:42 +00:00

ds: add support for PHP 8.3, fix installing on PHP 7.3 (#860)

* Add support for ds on PHP 8.3

* Fix installing DS on PHP 7.3
This commit is contained in:
Michele Locati 2023-12-19 19:11:17 +01:00 committed by GitHub
parent 8a3d8d2eed
commit fb2df34f35
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -2768,8 +2768,10 @@ installRemoteModule() {
;;
ds)
if test -z "$installRemoteModule_version"; then
if test $PHP_MAJMIN_VERSION -le 702; then
if test $PHP_MAJMIN_VERSION -lt 703; then
installRemoteModule_version=1.3.0
elif test $PHP_MAJMIN_VERSION -lt 704; then
installRemoteModule_version=1.4.0
fi
fi
;;