Commit 80c1205e authored by Fabien Potencier's avatar Fabien Potencier

merged branch GromNaN/patch-8 (PR #532)

This PR was merged into the master branch.

Commits
-------

d00ff5b1 Suggest removing the minimum-stability flag

Discussion
----------

Suggest removing the minimum-stability flag

Silex can be installed with stable versions of the Symfony2 components.
Users should not be encouraged to set the minimum-stability flag to dev.

https://groups.google.com/forum/?fromgroups=#!topic/silex-php/vPwMs7CMMT0

---------------------------------------------------------------------------

by igorw at 2012-11-07T23:50:52Z

I agree, it should also be adjusted in the usage doc (which is currently broken because it has neither `minimum-stability` nor `@dev`).

In fact this is already what is used in the skeletons.
parents 94fee6ce d00ff5b1
......@@ -29,9 +29,8 @@ composer](http://getcomposer.org). Just create a `composer.json` file and
run the `php composer.phar install` command to install it:
{
"minimum-stability": "dev",
"require": {
"silex/silex": "1.0.*"
"silex/silex": "1.0.*@dev"
}
}
......
......@@ -25,7 +25,7 @@ If you want more flexibility, use Composer instead. Create a
{
"require": {
"silex/silex": "1.0.*"
"silex/silex": "1.0.*@dev"
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment