Я установил вмешательство/Image 3.5 в приложении Laravel 10 и получил ошибку: class «Вмешательство \ Image \ Drivers \ GD \ Driver» не найден с кодом: [code]use Intervention\Image\ImageManager; use Intervention\Image\Drivers\GD\Driver;
class GetImageProps { public static function get(string $imageType, string $imagePath = null): array { $retArray = []; $storageFullImagePath = base_path() . '/storage/app/' . $imagePath; try { $manager = new ImageManager(new Driver()); // Error pointing this line $targetImage = $manager->read($storageFullImagePath); < /code> Я проверяю, что пакет установлен ОК: < /p> $ composer show intervention/image name : intervention/image descrip. : PHP image manipulation keywords : gd, image, imagick, resize, thumbnail, watermark versions : * 3.5.0 type : library license : MIT License (MIT) (OSI approved) https://spdx.org/licenses/MIT.html#licenseText homepage : https://image.intervention.io/ source : [git] https://github.com/Intervention/image.git 408d3655c7705339e8c79731ea7efb51546cfa10 dist : [zip] https://api.github.com/repos/Intervention/image/zipball/408d3655c7705339e8c79731ea7efb51546cfa10 408d3655c7705339e8c79731ea7efb51546cfa10 path : /mnt/_work_sdb8/wwwroot/lar/NewsPublisher/vendor/intervention/image names : intervention/image
support issues : https://github.com/Intervention/image/issues source : https://github.com/Intervention/image/tree/3.5.0
suggests ext-exif Recommended to be able to read EXIF data properly. < /code> В выходе phpinfo: < /p> PHP Version 8.2.16
gd GD Support enabled GD headers Version 2.3.3 GD library Version 2.3.3 FreeType Support enabled [/code] мне нужно несколько параметров для config/app.php? Что не так?