Fixed a typographical error in the README file. The name of the image processing library was corrected from 'intervetion/image' to 'intervention/image'.
The project's dependencies have been updated to their latest versions. This includes updates to the Intervention Image library, Symfony HTTP Foundation, and several Symfony Polyfill libraries. The image processing extension has also been switched from Imagick to GD for better compatibility and performance. Additionally, the Composer plugin API version has been updated.
The image driver used in the ImageManager instance has been switched from Imagick to Gd. This change should not affect any existing functionality but may improve performance and compatibility with different server setups.
The .gitignore file has been updated to ignore all files in the cache directory, except for the .gitkeep file. A new .gitkeep file has also been created in the cache directory.
The image processing logic has been updated to better handle optional parameters. Previously, the code would always pad and resize the canvas regardless of whether width, height, or canvas dimensions were provided. Now, padding and resizing only occur if the corresponding options are set. This change makes the code more flexible and prevents potential errors when certain parameters are not provided.