- 🇳🇱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!