From 45e336b383babf0408da1052246f8dbd03f5e9e3 Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Mon, 7 Dec 2020 19:41:13 +0100 Subject: [PATCH] Fix installation of memcache on PHP 7.x Test: memcache --- install-php-extensions | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install-php-extensions b/install-php-extensions index c08fabe..bc44edd 100755 --- a/install-php-extensions +++ b/install-php-extensions @@ -1237,6 +1237,8 @@ installPECLModule() { if test -z "$installPECLModule_version"; then if test $PHP_MAJMIN_VERSION -lt 700; then installPECLModule_version=2.2.7 + elif test $PHP_MAJMIN_VERSION -lt 800; then + installPECLModule_version=4.0.5.2 fi fi ;;