Can't Install on Drupal 11.1.1

Created on 12 January 2025, 8 days ago
Updated 17 January 2025, 3 days ago

Steps to reproduce

composer require 'drupal/feeds_tamper:^2.0@beta'
gives a failed installation and this error report:

Problem 1
    - Root composer.json requires drupal/feeds_tamper ^2.0@beta -> satisfiable by drupal/feeds_tamper[2.0.0-beta1, 2.0.0-beta2, 2.0.0-beta3, 2.0.0-beta4].
    - drupal/feeds_tamper 2.0.0-beta1 requires drupal/core ^8.5.0 -> found drupal/core[8.5.0, ..., 8.9.20] but the package is fixed to 11.1.1 (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/feeds_tamper 2.0.0-beta2 requires drupal/core ^8 || ^9 -> found drupal/core[8.0.0, ..., 8.9.20, 9.0.0, ..., 9.5.11] but the package is fixed to 11.1.1 (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/feeds_tamper 2.0.0-beta3 requires drupal/core ^8 || ^9 || ^10 -> found drupal/core[8.0.0, ..., 8.9.20, 9.0.0, ..., 9.5.11, 10.0.0, ..., 10.4.1] but the package is fixed to 11.1.1 (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/feeds_tamper 2.0.0-beta4 requires drupal/tamper ^1.0-alpha3 -> found drupal/tamper[dev-1.x, 1.0.0-alpha3, 1.0.0-alpha4, 1.0.0-alpha5, 1.x-dev (alias of dev-1.x)] but it does not match your minimum-stability.
🐛 Bug report
Status

Active

Version

2.0

Component

Code

Created by

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇮🇹Italy apaderno Brescia, 🇮🇹
  • 🇳🇱Netherlands megachriz

    Sorry for the late reply, I somehow did not get an email notification about this issue.

    This is probably caused by the "minimum-stability" setting in the composer.json file in your Drupal root folder. By default, this setting is set to "stable". Because of that, Composer won't download the Tamper module (which is dependency of Feeds Tamper), because Tamper has no stable release yet.

    To fix that:

    • Either set "minimum-stability" to "alpha" in the composer.json of your Drupal root folder (because Tamper is currently in alpha);
    • Or composer require the Tamper module as well with the following command:
      composer require 'drupal/tamper:^1.0@alpha'
      

    I hope that this helps!

Production build 0.71.5 2024