Closed
Description
I tried installing symfony/psr-http-message-bridge
on a new Symfony 5.4 project exactly how the documentation showed (composer require symfony/psr-http-message-bridge
) but it didn't work and I had the following error:
Problem 1
- Root composer.json requires symfony/psr-http-message-bridge 5.4, found symfony/psr-http-message-bridge[v0.1, v0.2, v0.3, v0.4, v1.0.0, ..., v1.3.0, v2.0.0, ..., 2.3.x-dev, 6.4.x-dev, 7.0.x-dev] but it does not match the constraint.
After having a talk with @stof on Slack, the following command worked:
composer require symfony/psr-http-message-bridge:2.3
I'm not sure how to correctly word that out in a PR so I'll open an issue to point out this issue instead.