I was updating a typo3 website from version 11.5 to version 12.4 and at first i was having problems mit mein PHP version so i corrected it in the composer.json file and also in the dockerfile and restarted my docker, now i went into my terminal and inside of the docker tried to upgrade the composer with the composer update –dry-run command, however i get the following command
typ/toolbox/bc-docker.sh call_composer update --dry-run
Loading composer repositories with package information
Updating dependencies
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Root composer.json requires t3g/blog ^12.0.2 -> satisfiable by t3g/blog[12.0.2].
- t3g/blog 12.0.2 requires psr/http-message ^1.0 -> satisfiable by psr/http-message[1.0, 1.0.1, 1.1].
- You can only install one version of a package, so only one of these can be installed: psr/http-message[1.0, 1.0.1, 1.1, 2.0].
- tomasnorre/crawler 12.0.4 requires psr/http-message ^2.0 -> satisfiable by psr/http-message[2.0].
- Root composer.json requires tomasnorre/crawler ^12.0.4 -> satisfiable by tomasnorre/crawler[12.0.4].
Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.
I am trying to find a way i can make the both extensions work together because the conflict comes from one needing psr/http-message ^1.0 and the other needing psr/http-message ^2.0 i was expecting the composer to fix the dependency issues by itself i know it says use option -w option but i am concerned that it will affect my other dependencies. Part of My composer.json looks like this
"require": {
"typo3/minimal": "^12.4.0",
"typo3/cms-belog": "^12.4.0",
"typo3/cms-beuser": "^12.4.0",
"typo3/cms-fluid-styled-content": "^12.4.0",
"typo3/cms-impexp": "^12.4.0",
"typo3/cms-indexed-search": "^12.4.0",
"typo3/cms-info": "^12.4.0",
"typo3/cms-lowlevel": "^12.4.0",
"typo3/cms-redirects": "^12.4.0",
"typo3/cms-rte-ckeditor": "^12.4.0",
"typo3/cms-scheduler": "^12.4.0",
"typo3/cms-seo": "^12.4.0",
"typo3/cms-setup": "^12.4.0",
"typo3/cms-tstemplate": "^12.4.0",
user26875548 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.