I'm preparing the work to migrate some projects using this bundle to Symfony 6 & PHP 8. Here are my notes to enable compatibility. * allow `php` `^8.0`. * allow [`symfony/config`](https://github.com/symfony/config) `^6.0`. * allow [`symfony/dependency-injection`](https://github.com/symfony/dependency-injection) `^6.0`. Usage is not huge, but I don't know if there's deprecated code usage. * allow [`symfony/event-dispatcher`](https://github.com/symfony/event-dispatcher) `^6.0`. It should probably be fine because I didn't find any call to `dispatch` * allow [`symfony/http-foundation`](https://github.com/symfony/http-foundation) `^6.0`. * allow [`symfony/http-kernel`](https://github.com/symfony/http-kernel) `^6.0`. * allow [`symfony/options-resolver`](https://github.com/symfony/options-resolver) `^6.0`. * annotations should probably be converted to PHP8 attributes. Add documentation (or even better, a [Rector rule](https://getrector.org/blog/how-to-upgrade-annotations-to-attributes), see this [example](https://github.com/rectorphp/rector-symfony/blob/d817e255dd66c31896e7fbc8f59da6c966f0214b/config/sets/symfony/annotations-to-attributes.php#L14-L21)) - once done, we can probably remove `doctrine/annotations` dependency
I'm preparing the work to migrate some projects using this bundle to Symfony 6 & PHP 8.
Here are my notes to enable compatibility.
php^8.0.symfony/config^6.0.symfony/dependency-injection^6.0. Usage is not huge, but I don't know if there's deprecated code usage.symfony/event-dispatcher^6.0. It should probably be fine because I didn't find any call todispatchsymfony/http-foundation^6.0.symfony/http-kernel^6.0.symfony/options-resolver^6.0.doctrine/annotationsdependency