cloudinary-laravel: Flysystem problem for Laravel 9
Hey,
in version 1.0.5 the CloudinaryAdapter still uses the NotSupportingVisibilityTrait which doesn’t exist anymore in Flysystem 3. The latter is used in Laravel 9.
Best regards, Chris
About this issue
- Original URL
- State: closed
- Created 2 years ago
- Reactions: 6
- Comments: 16
@unicodeveloper It seems that the adapter shipped with this package was written for a
1.xflysystem adapter, so in order to truly support Laravel 9.x, it will likely involve rewriting theCloudinaryAdapterto be compatible with flysystem3.x.I am not sure if a flysystem adapter supports both
1.xand3.xis possible because I haven’t looked to much into the documentation for flysystem, but the notable change sin2.xand3.xcan be found here: https://flysystem.thephpleague.com/docs/what-is-new/I re-wrote the CloudinaryAdapter that implements Flysystem 3.x here: https://github.com/phuclh/flysystem-cloudinary. This package is just flysystem driver. It doesn’t have all features like this package but it works with Laravel 9
Can someone Please fix this?