Fix installation of gRPC on PHP 5.x, support gRPC on PHP 8

pull/198/head
Michele Locati 2020-12-03 17:04:54 +01:00
parent 01e06946f7
commit ed1957624c
No known key found for this signature in database
GPG Key ID: 98B7CE2E7234E28B
2 changed files with 8 additions and 1 deletions

View File

@ -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
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
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
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

View File

@ -1197,6 +1197,13 @@ installPECLModule() {
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)
installPECLModule_module=pecl_http
if test -z "$installPECLModule_version"; then