Project uses Symfony 2.8.2, PHP version is 5.6
I\'m trying to install DoctrineMigrationsBundle and composer fails with error:
Problem 1 - doctrine/
In your composer.json you should have the following :
"config": { "platform": { "php": "5.3.9" }, "bin-dir": "bin" },
Just change it to :
"config": { "bin-dir": "bin" },
And it should work.