Cannot install DoctrineMigrationsBundle via composer

前端 未结 1 1755
无人及你
无人及你 2021-01-18 22:49

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/

相关标签:
1条回答
  • 2021-01-18 22:54

    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.

    0 讨论(0)
提交回复
热议问题