Skip to content

Commit

Permalink
Be more specific with dependency stabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
jmikola committed Jul 5, 2012
1 parent cb52130 commit 8d68dc9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
],
"require": {
"php": ">=5.3.2",
"doctrine/mongodb-odm": "@dev",
"symfony/doctrine-bridge": "2.1.*",
"symfony/framework-bundle": "2.1.*"
"doctrine/mongodb-odm": "master@dev",

This comment has been minimized.

Copy link
@stof

stof Jul 5, 2012

Member

master is not a version. It is dev-master (which automatically implies allowing dev versions if you require it explicitly btw)

This comment has been minimized.

Copy link
@jmikola

jmikola Jul 5, 2012

Author Member

Is dev-master still appropriate, or would that have to change to dev-master@dev with the addition of stability constraints? @dev seemed to work fine on its own; I only thought I was being consistent here by putting something before @.

This comment has been minimized.

Copy link
@stof

stof Jul 5, 2012

Member

dev-master@dev is useless as requiring a dev version explicitly adds the @dev flag implicitly. @dev is an equivalent of *@dev, which would also allow using a stable version once you release it. So it would be better

This comment has been minimized.

Copy link
@jmikola

jmikola Jul 6, 2012

Author Member

Thanks! I should have gone with my first instinct. Will fix this up tomorrow 👍

This comment has been minimized.

Copy link
@jmikola

jmikola Jul 9, 2012

Author Member

Fix in 2.0 and master.

"symfony/doctrine-bridge": "2.1.*@beta",
"symfony/framework-bundle": "2.1.*@beta"
},
"autoload": {
"psr-0": {
Expand Down

0 comments on commit 8d68dc9

Please sign in to comment.