thephpleague / flysystem-bundle

Symfony bundle integrating Flysystem into Symfony applications
https://github.com/thephpleague/flysystem
MIT License
361 stars 68 forks source link

Switch to non-deprecated Extension class #161

Closed derrabus closed 5 months ago

derrabus commented 5 months ago

The usage of the Extension base class from the HttpKernel component which this bundle uses has been deprecated in Symfony 7.1. This can be resolved by extending the Extension class from the DependencyInjection component instead.

This might technically be a small BC break because a FlysystemExtension instance wouldn't pass an instanceof check for the old extension class anymore, but I think that's acceptable.

maxhelias commented 5 months ago

I agree, thanks @derrabus