1
0
Fork 0
mirror of https://github.com/mlocati/docker-php-extension-installer synced 2025-05-09 00:22:40 +00:00

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

This commit is contained in:
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

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