Commit 7b9225cf authored by Fabien Potencier's avatar Fabien Potencier

merged branch igorw/minimum-stability (PR #418)

Commits
-------

bcbd71ec Add minimum-stability flag to all composer.json samples

Discussion
----------

Add minimum-stability flag to all composer.json samples

Today marks the release of composer alpha4. This changes the default
stability from dev to stable, which means that if you want to use un-
stable dependencies, you either have to specify a root package level
minimum-stability, or use the @dev constraint, i.e. "1.0.*@dev".

We are setting the minimum-stability, so that we do not have to use
@dev for all dependencies, and all dependencies of dependencies.

We can increase the stability to beta once we release a beta of silex
(this will use Symfony 2.1 beta releases), and when we make a final
release (some time after Symfony 2.1.0), the flag can be removed.
parents 13eb2ba9 bcbd71ec
......@@ -29,6 +29,7 @@ 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.*"
}
......
{
"minimum-stability": "dev",
"require": {
"silex/silex": "1.0.*",
"symfony/browser-kit": "2.1.*",
......
{
"minimum-stability": "dev",
"require": {
"silex/silex": "1.0.*"
}
......
......@@ -24,6 +24,7 @@ If you want more flexibility, use Composer instead. Create a
.. code-block:: json
{
"minimum-stability": "dev",
"require": {
"silex/silex": "1.0.*"
}
......
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