I am trying to fix Doctrine Incorrect data format for unserializing , as indicated here and here .
My composer.json looks like this:
require: { "symfony/symfony": "~2.5", "doctrine/doctrine-bundle": "~1.2", "doctrine/orm": "dev-master", "...": "..." }
... but the composer complains that he cannot find the appropriate package:
doctrine / orm dev-master requires the doctrine / dbal> = 2.5-dev, <2.6-dev → no corresponding package was found.
How can I resolve freezes without formatting or raising minimum-stability in composer.json ?
UPDATE: Nifr clause worked, this is a new configuration:
"symfony/symfony": "~2.5", "doctrine/orm": "dev-master", "doctrine/dbal": "@dev", "doctrine/common": "@dev", "doctrine/doctrine-bundle": "@dev",
Oli source share