Fix installation of gRPC on PHP 5.x, support gRPC on PHP 8
parent
01e06946f7
commit
ed1957624c
|
@ -14,7 +14,7 @@ gd 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0
|
||||||
gettext 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0
|
gettext 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0
|
||||||
gmagick 5.5 5.6 7.0 7.1 7.2 7.3 7.4
|
gmagick 5.5 5.6 7.0 7.1 7.2 7.3 7.4
|
||||||
gmp 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0
|
gmp 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0
|
||||||
grpc 5.5 5.6 7.0 7.1 7.2 7.3 7.4
|
grpc 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0
|
||||||
http 5.5 5.6 7.0 7.1 7.2 7.3 7.4
|
http 5.5 5.6 7.0 7.1 7.2 7.3 7.4
|
||||||
igbinary 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0
|
igbinary 5.5 5.6 7.0 7.1 7.2 7.3 7.4 8.0
|
||||||
imagick 5.5 5.6 7.0 7.1 7.2 7.3 7.4
|
imagick 5.5 5.6 7.0 7.1 7.2 7.3 7.4
|
||||||
|
|
|
@ -1197,6 +1197,13 @@ installPECLModule() {
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
grpc)
|
||||||
|
if test -z "$installPECLModule_version"; then
|
||||||
|
if test $PHP_MAJMIN_VERSION -le 506; then
|
||||||
|
installPECLModule_version=1.33.1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
;;
|
||||||
http)
|
http)
|
||||||
installPECLModule_module=pecl_http
|
installPECLModule_module=pecl_http
|
||||||
if test -z "$installPECLModule_version"; then
|
if test -z "$installPECLModule_version"; then
|
||||||
|
|
Loading…
Reference in New Issue