Hi all,
I hope someone can provide some help with this. A friend asked me for some help with his Magento webshop (I wished I didn't say yes). Anyways, when I run the following command:
/opt/plesk/php/7.3/bin/php /var/www/vhosts/YYY.ZZZ/domains/YYY.ZZZ/public_html/composer.phar require mollie/magento2
I get the following error:
Your requirements could not be resolved to an installable set of packages. Problem 1 - Root composer.json requires mollie/magento2 ^2.12 -> satisfiable by mollie/magento2[2.12.0]. - mollie/magento2 2.12.0 requires magento/framework >=102.0.3 -> could not be found in any version, there may be a typo in the package name.
After searching I found the following thread here. But that also does not help me.
I tried setting the following:
"require": { "magento/product-community-edition": "2.3.4" "magento/framework": "101.*.*" },
But still the same error... No clue what to do next or how to solve this.
Maybe someone has the solution? Thanks in advance.
Regards
Nobody knows what I am doing wrong?
@michelisen4b7c wrote:Hi all,
I hope someone can provide some help with this. A friend asked me for some help with his Magento webshop (I wished I didn't say yes). Anyways, when I run the following command:
/opt/plesk/php/7.3/bin/php /var/www/vhosts/YYY.ZZZ/domains/YYY.ZZZ/public_html/composer.phar require mollie/magento2
I get the following error:Your requirements could not be resolved to an installable set of packages. Problem 1 - Root composer.json requires mollie/magento2 ^2.12 -> satisfiable by mollie/magento2[2.12.0]. - mollie/magento2 2.12.0 requires magento/framework >=102.0.3 -> could not be found in any version, there may be a typo in the package name.
After searching I found the following thread DGME But that also does not help me.
I tried setting the following:"require": { "magento/product-community-edition": "2.3.4" "magento/framework": "101.*.*" },But still the same error... No clue what to do next or how to solve this.
Maybe someone has the solution? Thanks in advance.
Regards
It seems you're facing a dependency issue because mollie/magento2 2.12.0 requires magento/framework >=102.0.3, but your Magento setup has magento/framework at version 101.*.*. To resolve this, you should upgrade your Magento installation to a version compatible with mollie/magento2 2.12.0, such as Magento 2.4.x. After upgrading Magento, run composer update to resolve dependencies. Alternatively, if upgrading Magento isn't feasible, consider using an earlier version of the Mollie extension compatible with your current Magento version.