Problem/Motivation
Problem 1
- drupal/signature_field dev-3.x requires drupal:color ^1.0 -> could not be found, it looks like its name is invalid, ":" is not allowed in package names.
- drupal/signature_field 3.x-dev is an alias of drupal/signature_field dev-3.x and thus requires it to be installed too.
- Root composer.json requires drupal/signature_field ^3.0.1 -> satisfiable by drupal/signature_field[3.0.1, 3.x-dev (alias of dev-3.x)].Steps to reproduce
Running the command composer require drupal/signature_field doesn't download the latest release even after clearing the composer cache, so I had to download the latest one by adding the specific version using the composer require drupal/signature_field:^3.0.1 command.
Proposed resolution
There seemed a typo in composer.json file. Instead of drupal:color it should be drupal/color.
Remaining tasks
User interface changes
API changes
Data model changes
Issue fork signature_field-3375122
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #4
geoanders commentedGood catch. Now merged in.
Comment #5
madelyncruz commentedHi geoanders, composer install works now. thank you for the release!