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

Add support for PHP 8.4 RC (#946)

This commit is contained in:
Michele Locati 2024-07-30 10:40:46 +02:00 committed by GitHub
parent a38d946ba7
commit e48c6c52bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 116 additions and 111 deletions

View file

@ -2538,7 +2538,11 @@ EOF
fi
;;
ftp)
docker-php-ext-configure ftp --with-openssl-dir=/usr
if test $PHP_MAJMIN_VERSION -ge 804; then
docker-php-ext-configure ftp --with-ftp-ssl=/usr
else
docker-php-ext-configure ftp --with-openssl-dir=/usr
fi
;;
gd)
if test $PHP_MAJMIN_VERSION -le 506; then
@ -4792,7 +4796,7 @@ esac
setPHPVersionVariables
setPHPPreinstalledModules
case "$PHP_MAJMIN_VERSION" in
505 | 506 | 700 | 701 | 702 | 703 | 704 | 800 | 801 | 802 | 803) ;;
505 | 506 | 700 | 701 | 702 | 703 | 704 | 800 | 801 | 802 | 803 | 804) ;;
*)
printf "### ERROR: Unsupported PHP version: %s.%s ###\n" $((PHP_MAJMIN_VERSION / 100)) $((PHP_MAJMIN_VERSION % 100))
;;