Merge pull request #198 from mlocati/grpc-php5-php8

Fix installation of gRPC on PHP 5.x, support gRPC on PHP 8
pull/199/head 1.1.1
Michele Locati 2020-12-03 17:42:56 +01:00 committed by GitHub
commit a3bcdebdad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 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

View File

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