I'm trying to install extensions with composer (using MobaXterm for SSH client).
I'm in the Flarum directory (not public_html since it's a subdomain).
when I type for example composer.require flagrow/upload I get:
Using version ^0.5.7 for flagrow/upload
./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 flagrow/upload ^0.5.7 -> satisfiable by flagrow/upload[0.5.7].
- flagrow/upload 0.5.7 requires flarum/core ^0.1.0-beta.6 -> satisfiable by flarum/core[0.1.x-dev, v0.1.0-bet a.6, v0.1.0-beta.7] but these conflict with your requirements or minimum-stability.
Installation failed, reverting ./composer.json to its original content.
This problem occurs with any extension, and not only with the one I mentioned.
My composer.json file does contain the following settings:
"minimum-stability": "beta",
"prefer-stable": true
I'm running version v0.1.0-beta.7.
What could be the problem?
Thanks!