-
Notifications
You must be signed in to change notification settings - Fork 0
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
Allow Symfony 6.4 LTS #3
Conversation
…d before initialization
@florentdestremau This PR allows Symfony 6.4. The Unit tests pass, so there shouldn't be a problem since the test suite is quite comprehensive. I actually don't have any real Symfony 6.4 applications, so I would be gratefull if you could checkout the PR in your application and let me know if everything works correctly. composer require danielburger1337/2fa-email@dev-symfony-lts Otherwise this should be good to merge! |
We are currently implementing the 2FA, that's what prompted the issue in the first place. I will gladly report back in a couple of days, while we roll out and have a check |
The command doesn't install the branch:
|
A default composer.json does not allow installing dev branches. https://getcomposer.org/doc/04-schema.md#minimum-stability To circumvent this, temporarily add {
"name": "My Project",
"minimum-stability": "dev",
...
} Alternativly you can add the branch constraint to your composer.json manually and then run the following command: {
"name": "My Project",
"require": {
"danielburger1337/2fa-email": "dev-symfony-lts",
...
}
...
} composer update danielburger1337/2fa-email -W The |
It's been working fine on our side for a week, looks good to me 👍 |
Released as v1.1.0 Thank you very much for your suggestion and testing! |
Closes #2