-
-
Notifications
You must be signed in to change notification settings - Fork 455
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Symfony 7 support #1692
Add Symfony 7 support #1692
Conversation
a22d139
to
2b7916e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is that added Container type declaration (instead of ContainerInterface) in \Symfony\Bridge\Doctrine\ManagerRegistry legit?
yes it is, because we need that kind of container in resetService()
Could help fix the failing job: --- a/.github/workflows/continuous-integration.yml
+++ b/.github/workflows/continuous-integration.yml
@@ -39,7 +39,7 @@ jobs:
# Test LTS
- symfony-require: "5.4.*"
dependencies: "highest"
- php-version: "8.0"
+ php-version: "8.1"
|
@nicolas-grekas to me, this is a bug in Symfony if installing deps on PHP 8.0 with Symfony 5.4 brings incompatible dependencies between Symfony packages. |
I agree, but I'd wait for someone to be affected to have a closer look :) |
I think it's just because symfony/translation-contracts@9fca658 was still not tagged |
8efe508
to
6b78117
Compare
6b78117
to
2cc9f2b
Compare
Thank you @ostrolucky |
I was curious what needs to be done so far. Not much so far.
@nicolas-grekas Is that added Container type declaration (instead of ContainerInterface) in
\Symfony\Bridge\Doctrine\ManagerRegistry
legit?