Hello,
It seems impossible to install the module without git:
composer require "drupal/readmehelp:^1.0"
./composer.json has been updated
> DrupalProject\composer\ScriptHandler::checkComposerVersion
Loading composer repositories with package information
Updating dependencies (including require-dev)
- Installing drupal/readmehelp (dev-1.x 87438a8)
Cloning 87438a8cf335e03b33d653ef1f0cbae99ab42ea6
Installation failed, reverting ./composer.json to its original content.
[RuntimeException]
Failed to clone https://git.drupal.org/project/readmehelp, git was not found, check that it is installed and in your PA
TH env.
sh: git: command not found
require [--dev] [--prefer-source] [--prefer-dist] [--no-progress] [--no-update] [--update-no-dev] [--update-with-dependencies] [--ignore-platform-reqs] [--sort-packages] [-o|--optimize-autoloader] [-a|--classmap-authoritative] [--] [<packages>]...| Comment | File | Size | Author |
|---|---|---|---|
| #2 | readmehelp-tilda-1.0.png | 62.35 KB | drugan |
| #2 | readmehelp-caret-1.0.png | 67.94 KB | drugan |
Comments
Comment #2
drugan commentedAs for my experience when working with composer you should be a little lucky. Like me :)
caret prefix:

tilda prefix:
You may also try this:
composer require "drupal/readmehelp:^1.0.0"or this:
composer require "drupal/readmehelp:~1.0.0"or this:
composer require "drupal/readmehelp:~1.0.0-beta"The last one will install (update) any beta version like 1.0.0-beta1, 1.0.0-beta2, etc..
I'd recommend before running the command always check all versions for the package:
composer info -a drupal/readmehelpComment #3
gge commentedWell, it turned out that luck was on my side this time :)
composer require "drupal/readmehelp:~1.0.0"solved the problem.Thank you~
Comment #4
drugan commentedThank you too, for using the module.