I'm trying to fix Doctrine's Erroneous data format for unserializing bug as referenced here and here.
My composer.json
looks like this ...
require: {
"symfony/symfony": "~2.5",
"doctrine/doctrine-bundle": "~1.2",
"doctrine/orm": "dev-master",
"...": "..."
}
... but composer complains that it can't find a matching package:
doctrine/orm dev-master requires doctrine/dbal >=2.5-dev,<2.6-dev -> no matching package found.
How can I resolve the dependencies without forking or raising the minimum-stability
in the composer.json
?
UPDATE: Nifr's suggestion worked, this is the new config:
"symfony/symfony": "~2.5",
"doctrine/orm": "dev-master",
"doctrine/dbal": "@dev",
"doctrine/common": "@dev",
"doctrine/doctrine-bundle": "@dev",