When upgrading Magento version 2.2.5 to version 2.2.8 it throws the following error
Problem 1
- Can only install one of: temando/module-shipping-m2[1.3.10, 1.3.7]. - Can only install one of: temando/module-shipping-m2[1.3.10, 1.3.7]. - Can only install one of: temando/module-shipping-m2[1.3.7, 1.3.10]. - magento/product-community-edition 2.2.8 requires temando/module-shipping-m2 1.3.10 -> satisfiable bytemando/module-shipping-m2[1.3.10]. - Installation request for magento/product-community-edition 2.2.8 -> satisfiable by magento/product-community-edition[2.2.8]. - Installation request for temando/module-shipping-m2 (locked at 1.3.7) -> satisfiable by temando/module-shipping-m2[1.3.7].
-
Hi, did you find a solution to this? I've got the same issue at the moment.David Wilkinson– David Wilkinson2019年06月04日 09:06:05 +00:00Commented Jun 4, 2019 at 9:06
2 Answers 2
From the lines that you have posted I would guess that in your composer.json you require the package temando/module-shipping with version constraint 1.3.7 while the package magento/product-community-edition requires a higher version.
Check your composer.json for a line similar to:
"temando/module-shipping": "1.3.7"
and either delete it or change it to
"temando/module-shipping": "^1.3.7"
Should this not be the case, you can always check which packages require a specific package in which version by executing the following:
composer why temando/module-shipping
-
0 thanks for reply i have successfully upgraded versioninder– inder2019年05月27日 07:23:15 +00:00Commented May 27, 2019 at 7:23
Remove This Module Entry in core_config_data Table
And Then Run This Command :-
composer update
composer install
php bin/magento s:up
php bin/magento s:s:d -f
php bin/magento c:f
-
working or not ?Ronak Rathod– Ronak Rathod2019年04月10日 13:27:55 +00:00Commented Apr 10, 2019 at 13:27
Explore related questions
See similar questions with these tags.