neo4j-ogm-bundle icon indicating copy to clipboard operation
neo4j-ogm-bundle copied to clipboard

Composer fails

Open adadgio opened this issue 9 years ago • 3 comments

Composer fails to install the bundle. Specs are

 "php": ">=5.3.3",
 "symfony/symfony": "2.7.*",

Trace is:

- klaussilveira/neo4j-ogm-bundle dev-master requires hirevoice/neo4jphp-ogm dev-master -> satisfiable by hirevoice/neo4jphp-ogm[dev-master].
- Installation request for klaussilveira/neo4j-ogm-bundle dev-master -> satisfiable by klaussilveira/neo4j-ogm-bundle[dev-master].

Could you please make a release for that bundle ?

adadgio avatar Jul 16 '15 10:07 adadgio

This is because you must add this to composer :

 "everyman/neo4jphp": "dev-master",
 "hirevoice/neo4jphp-ogm": "dev-master",
 "klaussilveira/neo4j-ogm-bundle": "dev-master"

Could you update your README ?

Thanks

adadgio avatar Jul 16 '15 11:07 adadgio

just went through this myself. The Packagist listings arent properly connecting the dependency versions

RedactedProfile avatar Jul 20 '15 20:07 RedactedProfile

I had to do this:

"minimum-stability": "dev",
"prefer-stable": true,
"require": {
    "php": ">=5.3.3",
    "symfony/symfony": "2.7.*",
    "klaussilveira/neo4j-ogm-bundle": "dev-master@dev"
}

AzeemMichael avatar Jul 23 '15 03:07 AzeemMichael