mirror of
https://github.com/mlocati/docker-php-extension-installer
synced 2025-05-09 16:42:41 +00:00
Add support for zookeeper on PHP 8.1/8.2 (#696)
This commit is contained in:
parent
9d8d867219
commit
83457983c7
2 changed files with 5 additions and 4 deletions
|
@ -3593,12 +3593,13 @@ installRemoteModule() {
|
|||
if test -z "$installRemoteModule_version"; then
|
||||
if test $PHP_MAJMIN_VERSION -le 506; then
|
||||
installRemoteModule_version=0.5.0
|
||||
else
|
||||
elif test $PHP_MAJMIN_VERSION -le 700; then
|
||||
installRemoteModule_version=1.0.0
|
||||
else
|
||||
installRemoteModule_version=alpha
|
||||
fi
|
||||
else
|
||||
installRemoteModule_version="$(resolvePeclStabilityVersion "$installRemoteModule_module" "$installRemoteModule_version")"
|
||||
fi
|
||||
installRemoteModule_version="$(resolvePeclStabilityVersion "$installRemoteModule_module" "$installRemoteModule_version")"
|
||||
case "$DISTRO" in
|
||||
alpine)
|
||||
if ! test -f /usr/local/include/zookeeper/zookeeper.h; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue