-
-
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
Should doctrine/dbal version be updated in composer.json? #745
Comments
|
I disagree. For example now there is Again, the question boils down to "why?". Why can't It would have been nice if you could at least reason why so specific version is used before you closed the issue. |
No, it doesn't. It requires at least version 2.5.12, which may or may not have bugs. composer will always pick the latest version that matches the constraint, unless you specify otherwise. Running
Simply because it's a different constraint that doesn't make sense here. Ninja edit:
Looking at the blame view leads to #677. This is something you can find on your own if you're interested. |
Sorry, my fault. I incorrectly thought |
doctrine/doctrine-bundle
requires"doctrine/dbal": "^2.5.12"
however this is an older version. Currentlydoctrine/orm v2.5.12
which is in require-dev, requires"doctrine/dbal": ">=2.5-dev,<2.7-dev"
and I believe soon it will be^2.6
should you match it or was it on purpose to fixate on a very specific version?I was just wondering because I recently had to upgrade to
dbal ~2.6
to getjsonb
support. It was not nice that doctrine-bundle kept trying to install 2.5.12 😄The text was updated successfully, but these errors were encountered: