是否可以在 symfony 3.2 上安装奏鸣曲
Is it possible to install sonata on symfony 3.2
我在使用 composer require sonata-project/propel-admin-bundle dev-master:
时遇到了这个错误
Problem 1
- Installation request for sonata-project/propel-admin-bundle dev-master -> satisfiable by sonata-project/propel-admin-bundle[dev-master].
- sonata-project/propel-admin-bundle dev-master requires sonata-project/admin-bundle ~2.3 -> satisfiable by sonata-project/admin-bundle[2.3.0, 2.3.1, 2.3.10, 2.3.2, 2.3.3, 2.3.4, 2.3.5, 2.3.6, 2.3.7, 2.3.8, 2.3.9, 2.x-dev] but these conflict with your requirements or minimum-stability.
有什么方法可以让 sonata 在 symfony 3.2 上运行?是否可以以某种方式忽略作曲家要求错误,然后自己修复兼容性错误?
SonataPropelAdminBundle 与 Symfony 不兼容 3.x。正如您在错误中看到的那样,它需要 SonataAdminBundle ~2.3
并且只有版本 > 3.x 的 SonataAdminBundle 与 Symfony 3.x
兼容
我在使用 composer require sonata-project/propel-admin-bundle dev-master:
时遇到了这个错误 Problem 1
- Installation request for sonata-project/propel-admin-bundle dev-master -> satisfiable by sonata-project/propel-admin-bundle[dev-master].
- sonata-project/propel-admin-bundle dev-master requires sonata-project/admin-bundle ~2.3 -> satisfiable by sonata-project/admin-bundle[2.3.0, 2.3.1, 2.3.10, 2.3.2, 2.3.3, 2.3.4, 2.3.5, 2.3.6, 2.3.7, 2.3.8, 2.3.9, 2.x-dev] but these conflict with your requirements or minimum-stability.
有什么方法可以让 sonata 在 symfony 3.2 上运行?是否可以以某种方式忽略作曲家要求错误,然后自己修复兼容性错误?
SonataPropelAdminBundle 与 Symfony 不兼容 3.x。正如您在错误中看到的那样,它需要 SonataAdminBundle ~2.3
并且只有版本 > 3.x 的 SonataAdminBundle 与 Symfony 3.x