4.1.0
Hotfix for compatibility with Laravel 13.20
Starting with version 13.20, Laravel introduced its own image integration based on Intervention Image. Unfortunately, this led to naming conflicts with facades and configuration files if you had installed intervention/image-laravel.
This update resolves these issues, but it also includes significant changes.
- The facade binding was renamed from
imagetointervention.image - The published config file was renamed from
image.phptointervention-image.php
If you're using intervention/image-laravel with Laravel 13.20, I recommend updating to version 4.1.0 immediately.
To avoid future problems with the configuration file, I recommend renaming the file from config/image.php to config/intervention-image.php after the update. However, this is not strictly necessary the legacy config is still detected by a fallback.
In the rather unlikely event that the image manger is resolved via an app('image') call, the new naming convention should be used: app('intervention.image').
Full Changelog: 4.0.1...4.1.0