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:
parent
a38d946ba7
commit
e48c6c52bf
4 changed files with 116 additions and 111 deletions
|
@ -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))
|
||||
;;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue