I tried to install using composer in Drupal 9
but I am getting following error
Problem 1
- Root composer.json requires drupal/drupalmoduleupgrader ^1.5 -> satisfiable by drupal/drupalmoduleupgrader[1.5.0].
- drupal/drupalmoduleupgrader 1.5.0 requires grom358/pharborist dev-master -> found grom358/pharborist[dev-master] but it does not match your minimum-stability.
Any help?
Comments
Comment #2
senthilnz commentedSorted
Changed minimum-stability to
"minimum-stability": "dev"Comment #3
joseph.olstadThanks for reporting, BTW, 8.x-1.6 was tagged and released today
Comment #4
joseph.olstadthe testbot prefers stable also, however drupalmoduleupgrader requires 'dev' see the ci-job below
https://www.drupal.org/pift-ci-job/2085866
Comment #5
dru pal commentedI'm getting a very similar issue in 8.x-1.7 for Drupal 9.2.0
Comment #6
dru pal commentedComment #7
joseph.olstad@Dru Pal
adjust your composer.json
change "minimum-stability": "stable"
to "minimum-stability": "dev"
then run
composer up drupal/drupalmoduleupgrader -wComment #8
damienmckennaI opened #3223978: Note on project page that "minimum-stability" must be changed before spotting this issue; the project page should be updated to note this install step.
Comment #9
jimafisk commentedChanging "minimum-stability" from "stable to "dev" in composer.json worked, thanks!
Comment #10
gábor hojtsyThe main project page also documents the minimum stability need (and has been for years). I now added it to the readme too.