add lib-imagick to show -p output (#7762)
parent
b0b00ad1fa
commit
f9234222d1
|
@ -157,6 +157,18 @@ class PlatformRepository extends ArrayRepository
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case 'imagick':
|
||||||
|
$reflector = new \ReflectionExtension('imagick');
|
||||||
|
|
||||||
|
ob_start();
|
||||||
|
$reflector->info();
|
||||||
|
$output = ob_get_clean();
|
||||||
|
|
||||||
|
preg_match('/^Imagick using ImageMagick library version => ImageMagick ([\d.]+)-(\d+)/m', $output, $matches);
|
||||||
|
$prettyVersion = "{$matches[1]}.{$matches[2]}";
|
||||||
|
|
||||||
|
break;
|
||||||
|
|
||||||
case 'libxml':
|
case 'libxml':
|
||||||
$prettyVersion = LIBXML_DOTTED_VERSION;
|
$prettyVersion = LIBXML_DOTTED_VERSION;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue