Merge pull request #8950 from Ayesh/issue/8946
Platform Check: Add a special case for `zend-opcache`pull/8962/head
commit
56b4667db0
|
@ -640,6 +640,10 @@ EOF;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($match[1] === 'zend-opcache') {
|
||||||
|
$match[1] = 'zend opcache';
|
||||||
|
}
|
||||||
|
|
||||||
$extension = var_export($match[1], true);
|
$extension = var_export($match[1], true);
|
||||||
if ($match[1] === 'pcntl' || $match[1] === 'readline') {
|
if ($match[1] === 'pcntl' || $match[1] === 'readline') {
|
||||||
$requiredExtensions[$extension] = "PHP_SAPI !== 'cli' || extension_loaded($extension) || \$missingExtensions[] = $extension;\n";
|
$requiredExtensions[$extension] = "PHP_SAPI !== 'cli' || extension_loaded($extension) || \$missingExtensions[] = $extension;\n";
|
||||||
|
|
Loading…
Reference in New Issue