merged branch igorw/composer (PR #268)
Commits ------- 8d30526d [composer] remove version and type 9d88f817 [composer] add branch-alias Discussion ---------- [composer] add branch-alias This means we get a 1.0-dev version that can be installed as `1.0.*` or `>=1.0-dev` --------------------------------------------------------------------------- by fabpot at 2012-02-27T13:57:11Z I think we also need to remove the version entry (ping @Seldaek). --------------------------------------------------------------------------- by igorw at 2012-02-27T14:01:17Z Good point, done.
Showing
{ | { | ||
"name": "silex/silex", | "name": "silex/silex", | ||
"type": "library", | |||
"description": "The PHP micro-framework based on the Symfony2 Components", | "description": "The PHP micro-framework based on the Symfony2 Components", | ||
"keywords": ["microframework"], | "keywords": ["microframework"], | ||
"homepage": "http://silex.sensiolabs.org", | "homepage": "http://silex.sensiolabs.org", | ||
"version": "1.0.0", | |||
"license": "MIT", | "license": "MIT", | ||
"authors": [ | "authors": [ | ||
{ | { | ||
... | @@ -38,5 +36,10 @@ | ... | @@ -38,5 +36,10 @@ |
}, | }, | ||
"autoload": { | "autoload": { | ||
"psr-0": { "Silex": "src/" } | "psr-0": { "Silex": "src/" } | ||
}, | |||
"extra": { | |||
"branch-alias": { | |||
"dev-master": "1.0-dev" | |||
} | |||
} | } | ||
} | } |
Please register or sign in to comment