- Issue created by @guymandude
- πΊπΈUnited States TolstoyDotCom L.A.
One possibility is to run the following before the composer command:
composer config minimum-stability dev composer config prefer-stable true
Using Composer on D 10.0.9 I got this message:
$ composer require 'drupal/component_builder:^3.0'
./composer.json has been updated
Running composer update drupal/component_builder
Loading composer repositories with package information
Updating dependencies
Info from https://repo.packagist.org: #StandWithUkraine
Your requirements could not be resolved to an installable set of packages.
Problem 1
- drupal/component_builder[3.0.0, ..., 3.0.1] require drupal/core ^8.8 || ^9 -> found drupal/core[8.8.0, ..., 8.9.20, 9.0.0, ..., 9.5.9] but the package is fixed to 10.0.9 (lock file version) by a partial update and that version does not match. Make sure you list it as an argument for the update command.
- drupal/component_builder 3.0.2 requires drupal/inline_entity_form ^1.0@RC -> found drupal/inline_entity_form[dev-1.x, 1.0.0-alpha1, ..., 1.x-dev (alias of dev-1.x)] but it does not match your minimum-stability.
- Root composer.json requires drupal/component_builder ^3.0 -> satisfiable by drupal/component_builder[3.0.0, 3.0.1, 3.0.2].
Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.
Installation failed, reverting ./composer.json and ./composer.lock to their original content.
Active
3.0
Miscellaneous
One possibility is to run the following before the composer command:
composer config minimum-stability dev
composer config prefer-stable true