We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In symfony 5.3 SessionInterface as a service was deprecated and in 6.0+ is no longer defined as a service in the container. Using this bundle with a Symfony ^6.0 will throw a DI ServiceNotFoundException when we get to https://github.com/gregurco/GuzzleBundleOAuth2Plugin/blob/master/src/Middleware/PersistentOAuthMiddleware.php#L33 and try to get the service reference from the container.
The text was updated successfully, but these errors were encountered:
I'm referring to Remove the session service and the SessionInterface alias, use the \Symfony\Component\HttpFoundation\Request::getSession() or the new \Symfony\Component\HttpFoundation\RequestStack::getSession() methods instead.
Sorry, something went wrong.
No branches or pull requests
In symfony 5.3 SessionInterface as a service was deprecated and in 6.0+ is no longer defined as a service in the container. Using this bundle with a Symfony ^6.0 will throw a DI ServiceNotFoundException when we get to https://github.com/gregurco/GuzzleBundleOAuth2Plugin/blob/master/src/Middleware/PersistentOAuthMiddleware.php#L33 and try to get the service reference from the container.
The text was updated successfully, but these errors were encountered: