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:
parent
8a3d8d2eed
commit
fb2df34f35
2 changed files with 4 additions and 2 deletions
|
@ -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
|
||||
;;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue