I'm trying to install Symfony CMF
bundle.
I have installed SonataAdminBundle 3.x
which requires SonataBlockBundle 3.x
.
When installing SymfonyCMF
bundle it requires symfoy-cmf/block-bundle 1.x
, but this block-bundle requires SonataBlockBundle 2.5
or less.
I have fork the symfoy-cmf/block-bundle 1.x
and change the requirement to 3.1 or less.
but I'm still getting following error
Problem 1 - symfony-cmf/block-bundle 1.3.0 requires sonata-project/block-bundle >=2.2.12,<2.5 -> satisfiable by
sonata-project/block-bundle[2.2.12, 2.2.13, 2.2.14, 2.2.15, 2.3.0, 2.3.1, 2.3.10, 2.3.11, 2.3.12, 2.3.2, 2.3.3, 2.3.4, 2.3.5, 2.3.6, 2.3.7, 2.3.8, 2.3.9] but these conflict with your requirements or minimum-stability. - symfony-cmf/symfony-cmf 1.3.0 requires symfony-cmf/block-bundle 1.3.* -> satisfiable by symfony-cmf/block-bundle[1.3.0]. - Installation request for symfony-cmf/symfony-cmf ~1.3 -> satisfiable by symfony-cmf/symfony-cmf[1.3.0].
composar.json
...
"symfony-cmf/symfony-cmf": "~1.3",
"iBasit/block-bundle": "dev-master", // this is to replace sonata-cmf/block-bundle requirement
"sonata-project/block-bundle": "3.0.*",
...