From f21522eb9cb04b9ec0775e8601687780d41cbb64 Mon Sep 17 00:00:00 2001 From: Marc Henderkes Date: Fri, 7 Jun 2024 15:23:11 +0200 Subject: [PATCH] replace ext-zend-opcache with ext-opcache for spc extension list --- src/SPC/command/BaseCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SPC/command/BaseCommand.php b/src/SPC/command/BaseCommand.php index cfb72e26..45dea917 100644 --- a/src/SPC/command/BaseCommand.php +++ b/src/SPC/command/BaseCommand.php @@ -147,6 +147,7 @@ abstract class BaseCommand extends Command protected function parseExtensionList(string $ext_list): array { + $ext_list = str_replace('zend-opcache', 'opcache', $ext_list); $a = array_map('trim', explode(',', $ext_list)); return array_values(array_filter($a, function ($x) { $filter_internals = [