I'm trying to install the codeception dev branch of 2.1.x for my Symfony project. Using composer, its unable to match the requirements:
[01:36 PM]-[root#oracle]-[~]
# phpunit --version
PHPUnit 4.8.11 by Sebastian Bergmann and contributors.
[02:03 PM]-[vagrant#oracle]-[/var/www]-[svn]
$ composer require --dev "codeception/codeception:2.1.3"
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Installation request for codeception/codeception 2.1.3 -> satisfiable by codeception/codeception[2.1.3].
- Conclusion: don't install phpunit/phpunit 4.8.11
- Conclusion: don't install phpunit/phpunit 4.8.10
- Conclusion: don't install phpunit/phpunit 4.8.9
- Conclusion: don't install phpunit/phpunit 4.8.8
- Conclusion: don't install phpunit/phpunit 4.8.7
- Conclusion: don't install phpunit/phpunit 4.8.6
- Conclusion: don't install phpunit/phpunit 4.8.5
- Conclusion: don't install phpunit/phpunit 4.8.4
- Conclusion: don't install phpunit/phpunit 4.8.3
- Conclusion: don't install phpunit/phpunit 4.8.2
- Can only install one of: phpunit/phpunit[4.8.0, 4.6.6].
- Can only install one of: phpunit/phpunit[4.8.0, 4.6.6].
- Can only install one of: phpunit/phpunit[4.8.0, 4.6.6].
- codeception/codeception 2.1.3 requires phpunit/phpunit ~4.8.0 -> satisfiable by phpunit/phpunit[4.8.0, 4.8.1, 4.8.10, 4.8.11, 4.8.2, 4.8.3, 4.8.4, 4.8.5, 4.8.6, 4.8.7, 4.8.8, 4.8.9].
- Conclusion: don't install phpunit/phpunit 4.8.1
- Installation request for phpunit/phpunit == 4.6.6.0 -> satisfiable by phpunit/phpunit[4.6.6].
Installation failed, reverting ./composer.json to its original content.
Strangely after this, phpunit somehow downgrades to version 4.6.6
$ phpunit --version
==== Redirecting to composer installed version in vendor/phpunit ====
PHPUnit 4.6.6 by Sebastian Bergmann and contributors.
Note I'm currently using CentOS 6.5 in a vagrant environment.
EDIT: composer.json
require: {
"php": ">=5.3.3",
"phpunit/phpunit": "4.6.*",
"symfony/symfony": "~2.4",
"doctrine/orm": "2.4.*",
"doctrine/doctrine-bundle": "~1.2",
"twig/extensions": "~1.0",
"symfony/assetic-bundle": "~2.3",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/monolog-bundle": "~2.4",
"sensio/distribution-bundle": "~2.3",
"sensio/framework-extra-bundle": "~3.0",
"sensio/generator-bundle": "~2.3",
"incenteev/composer-parameter-handler": "~2.0",
"braincrafted/bootstrap-bundle": "~2.0",
"twbs/bootstrap": "3.0.*",
"jquery/jquery": "1.10.*",
"components/jqueryui": "1.11.*",
"components/modernizr": "*",
"knplabs/knp-menu": "~2.0#alpha",
"knplabs/knp-menu-bundle": "~2.0#alpha",
"knplabs/knp-paginator-bundle": "dev-master",
"kuleuven/shibboleth-bundle": "dev-master",
"liip/functional-test-bundle": "~1.0",
"leaseweb/api-caller-bundle": "*",
"pdepend/pdepend": "~2.0",
"FortAwesome/Font-Awesome": "*",
"brown298/data-tables-bundle": "0.4.*",
"ircmaxell/password-compat": "~1.0.3",
"doctrine/doctrine-fixtures-bundle": "2.2.*",
"mmoreram/controller-extra-bundle": "1.0.*#dev"
}
Related
I started a new project in Symfony 5 and i tried to install EasyAdmin with composer require easycorp/easyadmin-bundle but I found an issue.
Composer log :
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Restricting packages listed in "symfony/symfony" to "5.1.*"
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Conclusion: don't install easycorp/easyadmin-bundle v3.1.3
- Conclusion: don't install easycorp/easyadmin-bundle v3.1.2
- Conclusion: don't install easycorp/easyadmin-bundle v3.1.1
- Conclusion: don't install easycorp/easyadmin-bundle v3.1.0
- Conclusion: don't install easycorp/easyadmin-bundle v3.0.2
- Conclusion: don't install easycorp/easyadmin-bundle v3.0.1
- Conclusion: remove doctrine/common 3.0.2
- Installation request for easycorp/easyadmin-bundle ^3.0 -> satisfiable by easycorp/easyadmin-bundle[v3.0.0, v3.0.1, v3.0.2, v3.1.0, v3.1.1, v3.1.2, v3.1.3].
- Conclusion: don't install doctrine/common 3.0.2
- easycorp/easyadmin-bundle v3.0.0 requires doctrine/common ^2.8 -> satisfiable by doctrine/common[2.12.0, 2.13.0, 2.13.1, 2.13.2, 2.13.3, v2.10.0, v2.11.0, v2.8.0, v2.8.1, v2.9.0].
- Can only install one of: doctrine/common[2.12.0, 3.0.2].
- Can only install one of: doctrine/common[2.13.0, 3.0.2].
- Can only install one of: doctrine/common[2.13.1, 3.0.2].
- Can only install one of: doctrine/common[2.13.2, 3.0.2].
- Can only install one of: doctrine/common[2.13.3, 3.0.2].
- Can only install one of: doctrine/common[v2.11.0, 3.0.2].
- Can only install one of: doctrine/common[v2.10.0, 3.0.2].
- Can only install one of: doctrine/common[v2.8.0, 3.0.2].
- Can only install one of: doctrine/common[v2.8.1, 3.0.2].
- Can only install one of: doctrine/common[v2.9.0, 3.0.2].
- Installation request for doctrine/common (locked at 3.0.2) -> satisfiable by doctrine/common[3.0.2].
Do you have an idea to resolve it ?
Easyadmin has a dependency on doctrine/common v2 you need to remove your current doctrine version with composer remove doctrine/common then you can install easyadmin
Try change your composer.json file like this:
"type": "project",
"license": "proprietary",
"require": {
"php": ">=7.2.5",
"ext-ctype": "*",
"ext-iconv": "*",
"composer/package-versions-deprecated": "^1.11",
"doctrine/annotations": "^1.10",
"doctrine/doctrine-bundle": "^2.1",
"doctrine/doctrine-migrations-bundle": "^3.0",
"doctrine/orm": "^2.6.3",
"easycorp/easyadmin-bundle": "3.1",
"sensio/framework-extra-bundle": "^5.6",
"symfony/asset": "5.1.*",
"symfony/console": "5.1.*",
"symfony/dotenv": "5.1.*",
"symfony/flex": "^1.3.1",
"symfony/form": "5.1.*",
"symfony/framework-bundle": "5.1.*",
"symfony/maker-bundle": "^1.20",
"symfony/security-bundle": "5.1.*",
"symfony/stopwatch": "5.1.*",
"symfony/twig-bundle": "5.1.*",
"symfony/validator": "5.1.*",
"symfony/web-profiler-bundle": "5.1.*",
"symfony/yaml": "5.1.*",
"twig/extra-bundle": "^2.12|^3.0",
"twig/twig": "^2.12|^3.0"
},
and then type: sudo composer update. Works on Ubuntu 18.04 LTS :)
As you can see in that list of error messages: easycorp/easyadmin-bundle requires doctrine/common in v2, while you have already installed v3.
You should downgrade that package such that the admin bundle can be installed. If you need help with that, please add the content of composer.json to your question.
You need to downgrade doctrine/common and doctrine/persistence.
Try this:
composer require doctrine/persistence:1.3.8 doctrine/common:2.13.3
Then you should be able to call:
symfony composer req "admin:^2.0"
I try to install api-platform on an existing Symfony 3.4 application, which is installed without flex.
When I try to install it with composer require api-platform/core, an error occured:
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Conclusion: don't install api-platform/core v2.4.3
- Conclusion: don't install api-platform/core v2.4.2
- Conclusion: don't install api-platform/core v2.4.1
- Conclusion: remove symfony/symfony v3.4.21
- Installation request for api-platform/core ^2.4 -> satisfiable by api-platform/core[v2.4.0, v2.4.1, v2.4.2, v2.4.3].
- Conclusion: don't install symfony/symfony v3.4.21
- api-platform/core v2.4.0 requires symfony/web-link ^4.1 -> satisfiable by symfony/web-link[v4.1.0, v4.1.1, v4.1.10, v4.1.11, v4.1.12, v4.1.2, v4.1.3, v4.1.4, v4.1.5, v4.1.6, v4.1.7, v4.1.8, v4.1.9, v4.2.0, v4.2.1, v4.2.2, v4.2.3, v4.2.4, v4.2.5, v4.2.6, v4.2.7, v4.2.8].
- don't install symfony/web-link v4.1.0|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.1.1|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.1.10|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.1.11|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.1.12|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.1.2|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.1.3|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.1.4|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.1.5|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.1.6|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.1.7|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.1.8|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.1.9|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.2.0|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.2.1|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.2.2|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.2.3|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.2.4|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.2.5|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.2.6|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.2.7|don't install symfony/symfony v3.4.21
- don't install symfony/web-link v4.2.8|don't install symfony/symfony v3.4.21
- Installation request for symfony/symfony 3.4.21 -> satisfiable by symfony/symfony[v3.4.21].
Installation failed, reverting ./composer.json to its original content.
This is my current composer require (and require-dev) parts:
"require": {
"php": ">=7.2",
"ext-curl": "*",
"ext-exif": "*",
"ext-json": "*",
"accord/mandrill-swiftmailer-bundle": "^1.3",
"beberlei/DoctrineExtensions": "^1.0",
"braincrafted/bootstrap-bundle": "^2.2",
"bukashk0zzz/hellosign-bundle": "^1.0",
"callr/sdk-php": "^0.11.1",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-migrations-bundle": "^1.3",
"doctrine/orm": "^2.5",
"dopiaza/slack-exception-logger-bundle": "^2.0",
"facebook/graph-sdk": "^5.6",
"friendsofsymfony/oauth-server-bundle": "^1.6",
"friendsofsymfony/rest-bundle": "^2.3",
"friendsofsymfony/user-bundle": "2.0.*",
"google/apiclient": "^2.2",
"google/cloud-storage": "^1.10",
"hpatoio/bitly-bundle": "^1.0",
"incenteev/composer-parameter-handler": "^2.0",
"jms/serializer-bundle": "^2.3",
"knplabs/knp-paginator-bundle": "^2.7",
"liip/imagine-bundle": "^1.9",
"nelmio/api-doc-bundle": "^3.3",
"nelmio/cors-bundle": "^1.5",
"phobetor/rabbitmq-supervisor-bundle": "^3.1",
"php-amqplib/rabbitmq-bundle": "^1.14",
"predis/predis": "^1.1",
"sensio/distribution-bundle": "^5.0.19",
"sensio/framework-extra-bundle": "^5.0.0",
"sentry/sentry-symfony": "^2.0",
"snc/redis-bundle": "^2.0",
"stof/doctrine-extensions-bundle": "^1.3",
"symfony/assetic-bundle": "^2.8",
"symfony/monolog-bundle": "^3.1.0",
"symfony/polyfill-apcu": "^1.0",
"symfony/swiftmailer-bundle": "^2.6.4",
"symfony/symfony": "3.4.21",
"twig/extensions": "^1.5",
"twig/twig": "^1.0||^2.0"
},
"require-dev": {
"brianium/paratest": "^1.1",
"doctrine/doctrine-fixtures-bundle": "^3.0",
"escapestudios/symfony2-coding-standard": "3.x-dev",
"friendsofphp/php-cs-fixer": "^2.14",
"liip/functional-test-bundle": "^1.9",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^6",
"sensio/generator-bundle": "^3.1",
"squizlabs/php_codesniffer": "*",
"symfony/phpunit-bridge": "^4.0"
},
I can't find any way to solve my problem and the composer error is not really explicit, so I didn't understand what I missing.
It looks like api-platform/core ^2.4 is not compatible with symfony/symfony v3.4.21 because it requires symfony/web-link v4.1.0 and I'm pretty sure all symfony v4 branch bundles are for symfony 4, try using api-platform/core v2.2 it doesn't appear to have any dependencies on any strictly v4 branch bundle. https://github.com/api-platform/core/blob/2.2/composer.json
I am using Symfony 3.2 and Sonata Admin 3 , when I tried to install the Sonata User Bundle, it gave me this error :
C:\wamp64\www\backend>php ../composer.phar require sonata-project/user-bundle
Using version ^3.2 for sonata-project/user-bundle
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.
Problem 1
- The requested package friendsofsymfony/user-bundle (locked at v2.0.0, required as ^1.3) is satisfiable by friendsofsymfony/user-bundle[v2.0.0] but these conflict with your requirements or minimum-stability.
Problem 2
- Conclusion: don't install friendsofsymfony/user-bundle v1.3.7
- Conclusion: don't install friendsofsymfony/user-bundle v1.3.6
- Conclusion: don't install friendsofsymfony/user-bundle v1.3.5
- Conclusion: don't install friendsofsymfony/user-bundle v1.3.4
- Conclusion: don't install friendsofsymfony/user-bundle v1.3.3
- Conclusion: don't install friendsofsymfony/user-bundle v1.3.2
- Conclusion: don't install friendsofsymfony/user-bundle v1.3.1
- Conclusion: remove symfony/symfony v3.2.8
- Installation request for friendsofsymfony/user-bundle ^1.3 -> satisfiable by friendsofsymfony/user-bundle[v1.3.0, v1.3.1, v1.3.2, v1.3.3, v1.3.4, v1.3.5, v1.3.6, v1.3.7].
- Conclusion: don't install symfony/symfony v3.2.8
- friendsofsymfony/user-bundle v1.3.0 requires symfony/security-bundle 2.1.* -> satisfiable by symfony/security-bundle[v2.1.0, v2.1.1, v2.1.10, v2.1.11, v2.1.12, v2.1.13, v2.1.2, v2.1.3, v2.1.4, v2.1.5, v2.1.6, v2.1.7, v2.1.8, v2.1.9].
- don't install symfony/security-bundle v2.1.0|don't install symfony/symfony v3.2.8
- ...
Installation failed, reverting ./composer.json to its original content.
This is the composer.json file :
"php": ">=5.5.9",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-cache-bundle": "^1.2",
"doctrine/orm": "^2.5",
"friendsofsymfony/rest-bundle": "^2.2",
"friendsofsymfony/user-bundle": "^1.3",
"incenteev/composer-parameter-handler": "^2.0",
"knplabs/knp-snappy-bundle": "~1.4",
"nelmio/api-doc-bundle": "^2.13",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"sonata-project/admin-bundle": "^3.17",
"sonata-project/doctrine-orm-admin-bundle": "^3.1",
"sonata-project/user-bundle": "^3.0",
"symfony/monolog-bundle": "^3.0.2",
"symfony/polyfill-apcu": "^1.0",
"symfony/swiftmailer-bundle": "^2.3.10",
"symfony/symfony": "3.2.*",
"twig/twig": "^1.0||^2.0"
Is there a way to use this combination: symfony 3 , sonata user 3 and fos user 2.0.0. Or I should symfony 2 sonata user 3 and fos user 1.3 ???
stable version of SonataUserBundle use Symfony 2.3, to use with symfony3 must use the development version 4 (dev-master)
"sonata-project/user-bundle": "dev-master"
Heyho,
is a stables version planed?
I am trying to install Page Bundle From Sonata Project. For some reason i cant install it because of the dependancy.
composer require sonata-project/page-bundle
Using version ^2.3 for sonata-project/page-bundle
Problem 1
- sonata-project/page-bundle 2.3.9 requires sonata-project/seo-bundle ~1.1 -> no matching package found.
- sonata-project/page-bundle 2.3.8 requires sonata-project/seo-bundle ~1.1 -> no matching package found.
- sonata-project/page-bundle 2.3.7 requires sonata-project/seo-bundle ~1.1 -> no matching package found.
- sonata-project/page-bundle 2.3.6 requires sonata-project/seo-bundle ~1.1 -> no matching package found.
- sonata-project/page-bundle 2.3.5 requires sonata-project/seo-bundle ~1.1 -> no matching package found.
- sonata-project/page-bundle 2.3.4 requires symfony/symfony >=2.2,<2.4-dev -> no matching package found.
- sonata-project/page-bundle 2.3.3 requires symfony/symfony >=2.2,<2.4-dev -> no matching package found.
- sonata-project/page-bundle 2.3.2 requires symfony/symfony >=2.2,<2.4-dev -> no matching package found.
- sonata-project/page-bundle 2.3.1 requires symfony/symfony >=2.2,<2.4-dev -> no matching package found.
- sonata-project/page-bundle 2.3.0 requires symfony/symfony >=2.2,<2.4-dev -> no matching package found.
- Installation request for sonata-project/page-bundle ^2.3 -> satisfiable by sonata-project/page-bundle[2.3.0, 2.3.1, 2.3.2, 2.3.3, 2.3.4, 2.3.5, 2.3.6, 2.3.7, 2.3.8, 2.3.9].
Potential causes:
- A typo in the package name
- The package is not available in a stable-enough version according to your minimum-stability setting
see <https://groups.google.com/d/topic/composer-dev/_g3ASeIFlrc/discussion> for more details.
Read <https://getcomposer.org/doc/articles/troubleshooting.md> for further common problems.
Composer.json file is ---
"require": {
"php": ">=5.3.9",
"symfony/symfony": "2.8.*",
"doctrine/orm": "^2.4.8",
"doctrine/doctrine-bundle": "~1.4",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/monolog-bundle": "~2.4",
"sensio/distribution-bundle": "~5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"incenteev/composer-parameter-handler": "~2.0",
"sonata-project/core-bundle": "^2.3",
"knplabs/knp-menu-bundle": "dev-master",
"sonata-project/admin-bundle": "dev-master",
"sonata-project/doctrine-orm-admin-bundle": "dev-master",
"sonata-project/easy-extends-bundle": "^2.1",
"sonata-project/seo-bundle": "^2.0",
"sonata-project/notification-bundle": "^2.3",
"sonata-project/cache-bundle": "^2.2",
"sonata-project/datagrid-bundle": "2.2.*#dev"
},
"require-dev": {
"sensio/generator-bundle": "~3.0",
"symfony/phpunit-bridge": "~2.7"
},
}
I tried few other ways to but didn't try downgrading seo-bundle and Symfony 2.8.*.
Thanks for your help in future.
I lowered seo-bundle to v1.1 and it worked like a charm.
I am still haveing some other problems, but atleast installation went through.
Since a few days I'm getting this error running composer update. When I first setup the project all went fine but now I have an issue I can't understand or fix:
Loading composer repositories with package information
(including require-dev) Your requirements could not be resolved to an
installable set of packages.
Problem 1
- doctrine/orm 2.5.x-dev requires doctrine/common >=2.5-dev,<2.6-dev -> no matching package found.
- doctrine/orm dev-master requires doctrine/common >=2.5-dev,<2.6-dev -> no matching package found.
- doctrine/orm dev-master requires doctrine/common >=2.5-dev,<2.6-dev -> no matching package found.
- remove doctrine/orm 2.5.x-dev|keep doctrine/orm dev-master
- Installation request for doctrine/orm >=2.5#dev -> satisfiable by doctrine/orm[dev-master, 2.5.x-dev].
Potential causes:
- A typo in the package name
- The package is not available in a stable-enough version according to your minimum-stability setting see
https://groups.google.com/d/topic/composer-dev/_g3ASeIFlrc/discussion
for more details.
Read http://getcomposer.org/doc/articles/troubleshooting.md for
further common problems.
Adding "doctrine/common": ">=2.5#dev" doesn't help.
"require": {
"php": ">=5.4.0",
"avalanche123/imagine-bundle": "~2.1",
"doctrine/orm": ">=2.5#dev",
"doctrine/doctrine-bundle": "~1.3",
"friendsofsymfony/jsrouting-bundle": "~1.5",
"incenteev/composer-parameter-handler": "~2.0",
"jms/di-extra-bundle": "~1.5",
"sensio/distribution-bundle": "~3.0",
"sensio/framework-extra-bundle": "~3.0",
"symfony/symfony": "2.6.*",
"symfony/assetic-bundle": "dev-master",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/monolog-bundle": "~2.6",
"stof/doctrine-extensions-bundle": "~1.1",
"twig/extensions": "~1.2",
"white-october/pagerfanta-bundle": "~1",
"ircmaxell/password-compat": "*",
},
UPDATE putting doctrine/common and doctrine/dbal to >=2.5#dev fixes the problem. But installing the dev-dependecies the problem is doctrine/doctrine-fixture-bundle:
Loading composer repositories with package information
Installing dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.
Loading composer repositories with package information Installing
dependencies (including require-dev) Your requirements could not be
resolved to an installable set of packages.
Problem 1
- Installation request for doctrine/doctrine-fixtures-bundle ~2.2 -> satisfiable by doctrine/doctrine-fixtures-bundle[v2.2.0].
- Conclusion: don't install doctrine/orm dev-master
- don't install doctrine/orm 2.5.x-dev|install doctrine/orm dev-master
- Installation request for doctrine/orm >=2.5#dev -> satisfiable by doctrine/orm[dev-master, 2.5.x-dev].
Here you have an answer to a similar problem
I suspect you have your minimum stability set to "stable", which means
that the dev versions of DBAL and Common cannot be used to fulfill the
requirement (while it is exactly what is needed). You have 3
solutions:
Change your minimum stability when you are using unstable
libraries
Whitelist the dev version of DBAL and Common in your root
composer.json (by adding a requirement with a #dev flag)
use stable
versions of Doctrine (i.e. 2.4) instead of using the master branch
The problem could be related to Symfony2's doctrine bundles that are incompatible with the 2.5#dev. Even if you set minimum stability to "dev" or if you include the required dependencies manually in the root composer.json.
UPDATE
I've managed to run an installation of vendors with the following composer.json (based on yours):
"require": {
"php": ">=5.4.0",
"avalanche123/imagine-bundle": "~2.1",
"doctrine/orm": ">=2.5#dev",
"doctrine/doctrine-bundle": "~1.3",
"doctrine/common": ">=2.5#dev",
"doctrine/dbal": ">=2.5#dev",
"friendsofsymfony/jsrouting-bundle": "~1.5",
"incenteev/composer-parameter-handler": "~2.0",
"jms/di-extra-bundle": "~1.5",
"sensio/distribution-bundle": "~3.0",
"sensio/framework-extra-bundle": "~3.0",
"symfony/symfony": "2.6.*",
"symfony/assetic-bundle": "dev-master",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/monolog-bundle": "~2.6",
"stof/doctrine-extensions-bundle": "~1.1",
"twig/extensions": "~1.2",
"white-october/pagerfanta-bundle": "~1",
"ircmaxell/password-compat": "*"
},
I didn't run into the problem you mention in your update. Maybe you should try to do a fresh installation instead of an update. What I did (Linux Debian):
rm -rf vendor/ app/cache/ app/logs/ composer.lock
composer install
Hope it helps.