symfony/process version contraints
jawira opened this issue · comments
Jawira Portugal commented
Hello, while reading composer.json
I noticed that symfony/process
are restricted to ~3.4||~4.3||~5.0||~6.0
.
Using the tilde condition means only fixes versions will be installed, for example ~5.0
means only 5.0.*
are going to be installed while versions 5.1.0
, 5.2.0
, etc. are not valid.
You can verify this in https://jubianchi.github.io/semver-check/#/~5.0/5.1.0.
If this is an error, I can write a PR to replace ~
by ^
(which is widely used in projects). Otherwise feel free to close this issue.