From 7b1aec3ea93d96a839c8bee4c540cc3c8065f696 Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Mon, 28 Mar 2022 14:49:56 +0200 Subject: [PATCH] Fix installing protobuf on PHP 8.x (#547) Test: protobuf --- install-php-extensions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install-php-extensions b/install-php-extensions index 1f7ef5f..d0c66a1 100755 --- a/install-php-extensions +++ b/install-php-extensions @@ -2729,6 +2729,8 @@ installRemoteModule() { if test -z "$installRemoteModule_version"; then if test $PHP_MAJMIN_VERSION -le 506; then installRemoteModule_version=3.12.4 + else + installRemoteModule_version=stable fi fi ;;