Determine the composer substrate dependencies

I am running an update for the composer, and one of the dependencies defined in my linker. json is trying to pull out a repo sub-dependency that no longer exists (very annoying!)

How can I determine which of the modules defines the required library, detailed output and dry run, really do not give much guidance.

my list:

"php": ">=5.3.3",
    "zendframework/zendframework": "2.2.*",

    "doctrine/doctrine-module": "0.8.*@dev",
    "doctrine/doctrine-orm-module": "0.8.*@dev",
    "gedmo/doctrine-extensions": "dev-master",
    "hounddog/doctrine-data-fixture-module":"0.0.*",

    "zf-commons/zfc-admin": ">=0.1.1",
    "zf-commons/zfc-user": ">=0.1.1",
    "zf-commons/zfc-user-doctrine-orm": ">=0.1.1",
    "zf-commons/zfc-base": "v0.1.2",

    "danielss89/zfc-user-admin": "dev-master",
    "bjyoungblood/bjy-authorize":"1.4.*",
    "zf-hipsters/bootstrap-flash-messenger": ">=1.0",
    "spoonx/sxbootstrap": "3.*",
    "manuakasam/sam-versioning" : "dev-master",
    "neilime/zf2-twb-bundle": "2.0",
    "rwoverdijk/assetmanager": "1.*",
    "imagine/imagine": "0.6.*@dev",
    "tawfekov/zf2entityaudit": ">=0.2-stable",
    "evandotpro/edp-superluminal": "dev-master",
    "netglue/zf2-route-layout-module": "dev-master",
    "twbs/bootstrap":"3.*",

A missing library that suddenly started to create problems - backplane\zendframework

+3
source share
3 answers

As user 1786423 pointed out, this is the problem of getting zendframework 2.2 * and doctrine 0.8. * together.

What I did, I upgraded to zf 2.3. * like this:

"php": ">=5.3.3",
"zendframework/zendframework": "2.3.*",
"doctrine/doctrine-orm-module": "0.*"

Then composer updateeverything will be fine.

- Updating zendframework/zendframework (dev-master 6f2d379 => dev-develop 4d8a7eb)
    Checking out 4d8a7ebdf3f628b10b9bfbf48babfaa3f903842b
- Updating doctrine/common (2.4.x-dev c94d6ff => dev-master 64e2a6a)
    Checking out 64e2a6ae51db05a1ea0525913ed0dcccdc523f01

and etc.

, .

+3

backplane/zendframework fork zf2, , "" zf2 , - - , , - zf2.2. * doctrine- (orm-) module 0.9.*@dev, zf2.3

zf2.2. * 0.8.*@dev, - .

php composer.phar depends doctrine/doctrine-module

.

, /zendframework , - issue

+2

You can usually do;

composer depends backplane\zendframework

But it looks like it's a dependency on another dependency, and Composer won’t show which one ... The only solution is to recursively analyze the dependencies manually ...?!

+1
source

All Articles