merged branch stof/allow_doctrine_2_3 (PR #4350)

Commits
-------

0581c3a Added missing dependency to doctrine common in the global composer.json
cdfb0b1 Changed composer constraint to allow Doctrine 2.3 too

Discussion
----------

Changed composer constraint to allow Doctrine 2.3 too

This allows both the 2.2.x and 2.3.x series for the Doctrine constraints instead of restricting to 2.2.x (thus allowing me to allow Doctrine 2.3 in DoctrineBundle too).

It also fixes some constraint that were missed when bumping the requirement to Doctrine 2.2 and added the missing deps in the global file (FrameworkBundle declares its dependency to ``doctrine/common`` for the ``annotation_reader`` service but it was not declared in the global file)

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

by travisbot at 2012-05-20T20:36:06Z

This pull request [fails](http://travis-ci.org/symfony/symfony/builds/1383231) (merged 0581c3a5 into 1407f112).

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

by stof at 2012-05-20T20:56:18Z

The failure is because the doctrine ORM does not allow Doctrine Common 2.2.x but only stable releases (see doctrine/doctrine2#351 fixing it) and Composer seems to resolve dev dependencies by considering all previous resolved deps as fixed whereas downgrading common to 2.2.2 could have worked to satisfy all deps

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

by fabpot at 2012-05-21T05:56:56Z

So, I cannot merge this until the composer bug is fixed (ping @naderman)

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

by stof at 2012-05-21T07:00:29Z

you could merge it now. The PR to the ORM has been merged so the composer.json is not triggering the issue anymore
This commit is contained in:
Fabien Potencier 2012-05-21 13:25:04 +02:00
commit d6c4356121
6 changed files with 14 additions and 12 deletions

View File

@ -17,6 +17,7 @@
],
"require": {
"php": ">=5.3.3",
"doctrine/common": ">2.2,<2.4-dev",
"twig/twig": ">=1.8,<2.0-dev"
},
"replace": {
@ -53,8 +54,8 @@
"symfony/yaml": "self.version"
},
"require-dev": {
"doctrine/dbal": "2.2.*",
"doctrine/orm": "2.2.*",
"doctrine/dbal": ">=2.2,<2.4-dev",
"doctrine/orm": ">=2.2,<2.4-dev",
"doctrine/data-fixtures": "1.0.*",
"propel/propel1": "dev-master",
"monolog/monolog": "dev-master"

View File

@ -17,14 +17,14 @@
],
"require": {
"php": ">=5.3.3",
"doctrine/common": "2.2.*"
"doctrine/common": ">=2.2,<2.4-dev"
},
"suggest": {
"symfony/form": "self.version",
"symfony/validator": "self.version",
"doctrine/data-fixtures": "1.0.*",
"doctrine/dbal": ">=2.1,<2.3",
"doctrine/orm": ">=2.1,<2.3"
"doctrine/dbal": ">=2.2,<2.4-dev",
"doctrine/orm": ">=2.2,<2.4-dev"
},
"autoload": {
"psr-0": { "Symfony\\Bridge\\Doctrine": "" }

View File

@ -25,7 +25,7 @@
"symfony/routing": "self.version",
"symfony/templating": "self.version",
"symfony/translation": "self.version",
"doctrine/common": ">=2.1,<2.3-dev"
"doctrine/common": ">=2.2,<2.4-dev"
},
"suggest": {
"symfony/console": "self.version",

View File

@ -21,12 +21,12 @@
"require-dev": {
"symfony/config": "2.1.*",
"symfony/yaml": "2.1.*",
"doctrine/common": ">=2.1,<2.3-dev"
"doctrine/common": ">=2.2,<2.4-dev"
},
"suggest": {
"symfony/config": "self.version",
"symfony/yaml": "self.version",
"doctrine/common": ">=2.1,<2.3-dev"
"doctrine/common": ">=2.2,<2.4-dev"
},
"autoload": {
"psr-0": { "Symfony\\Component\\Routing": "" }

View File

@ -24,14 +24,15 @@
"require-dev": {
"symfony/form": "2.1.*",
"symfony/routing": "2.1.*",
"doctrine/common": ">=2.1,<2.3-dev",
"doctrine/dbal": ">=2.1,<2.3-dev"
"doctrine/common": ">=2.2,<2.4-dev",
"doctrine/dbal": ">=2.2,<2.4-dev"
},
"suggest": {
"symfony/class-loader": "self.version",
"symfony/finder": "self.version",
"symfony/form": "self.version",
"symfony/routing": "self.version"
"symfony/routing": "self.version",
"doctrine/dbal": "to use the built-in ACL implementation"
},
"autoload": {
"psr-0": { "Symfony\\Component\\Security": "" }

View File

@ -24,7 +24,7 @@
"symfony/yaml": "2.1.*"
},
"suggest": {
"doctrine/common": ">=2.1,<2.3",
"doctrine/common": ">=2.1,<2.4-dev",
"symfony/http-foundation": "self.version",
"symfony/yaml": "self.version"
},