Tevfik
vendor\intervention\image\src\Intervention\Image\Commands\StreamCommand.php
bu yolda yer alan dosyada
$this->setOutput(\GuzzleHttp\Psr7\stream_for(
$image->encode($format, $quality)->getEncoded()
));
Yukarıdaki satırları aşağıdakilerle değiştirmek yeterli.
$this->setOutput(\GuzzleHttp\Psr7\Utils::streamFor(
$image->encode($format, $quality)->getEncoded()
));