jadell / neo4jphp

PHP wrapper of the Neo4j REST interface
Other
532 stars 137 forks source link

a 'stable' release for Composer packages. #155

Open Mulkave opened 10 years ago

Mulkave commented 10 years ago

I have this package that depends on neo4jphp and whenever I need to install that package in a project using composer with minimum-stability: stable composer says that it cannot resolve the dependencies since dev-master is considered a dev stability.

ikwattro commented 10 years ago

Tag 0.1.0 has been created. Not semver compatible but you can specify this version in your composer IMO

    "everyman/neo4jphp" : "~0.1.0"
jadell commented 10 years ago

tl;dr, in your requires add a line like "everyman/neo4jphp" : "@dev"

Here is a pretty good rundown of Composer stability flags https://igor.io/2013/02/07/composer-stability-flags.html

The 0.1.0 tag is well out of date an includes none of the new Neo4j version 2.0 stuff or any bug fixes since the tag was made.

The next version of will be 0.2.0, and won't be tagged until I either get around to implementing #98 or someone decides to do that themselves in a way that fits in with the rest of the library.