- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Cannot install Mollie via composer
Hi,
When I try to install mollie, I get the next error. Can someone please help me out?
Problem 1
- Installation request for mollie/magento2 1.12.2 -> satisfiable by mollie/magento2[1.12.2].
- mollie/magento2 1.12.2 requires magento/framework >=100.1.0 -> no matching package found.
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://getcomposer.org/doc/04-schema.md#minimum-stability> for more details.
- It's a private package and you forgot to add a custom repository to find it
Read <https://getcomposer.org/doc/articles/troubleshooting.md> for further common problems.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Cannot install Mollie via composer
you just need to change the version requirement to "magento/framework": "~100.1"
or 100.*.*
. For more information refer to https://getcomposer.org/doc/articles/versions.md#tilde-version-range-
https://www.manishmittal.com/
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Cannot install Mollie via composer
Hi @Manish Mittal ,
Do you know where to add the line. I know did in in composer.json under require. However, I still get the same problem/message installing the extension.
Kind regards,
Daniëlla
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Cannot install Mollie via composer
yes it should be in composer.json file only. Can you share what error coming after changing these version. Thanks
https://www.manishmittal.com/
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Cannot install Mollie via composer
@Manish Mittal I get:
Problem 1
- mollie/magento2 1.16.1 requires magento/framework >=101.0.0 -> no matching package found.
- mollie/magento2 1.16.0 requires magento/framework >=101.0.0 -> no matching package found.
- Installation request for mollie/magento2 ^1.16 -> satisfiable by mollie/magento2[1.16.0, 1.16.1].
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://getcomposer.org/doc/04-schema.md#minimum-stability> for more details.
- It's a private package and you forgot to add a custom repository to find it
So I added
"require": {
"magento/framework"; "101.*.*"
},
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Cannot install Mollie via composer
Just reset your changes and follow below shared article
https://github.com/mollie/magento2/wiki/Installation-using-Composer
Or if that not works for you, try using marketplace directly.
https://github.com/mollie/magento2/wiki/Installation-using-Marketplace
https://www.manishmittal.com/