You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.
While trying to install this module using composer I'm getting following error:
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Installation request for drupal/simplemde 1.0-alpha3 -> satisfiable by drupal/simplemde[1.0.0-alpha3].
- drupal/simplemde 1.0.0-alpha3 requires sparksuite/simplemde-markdown-editor 1.11.2 -> no matching package found.
Potential causes:
- A typo in the package name
- The package is not available in a stable-enough version according to your minimum-stability setting
see <https://getcomposer.org/doc/04-schema.md#minimum-stability> for more details.
Read <https://getcomposer.org/doc/articles/troubleshooting.md> for further common problems.
Steps to reproduce:
Add "drupal/simplemde": "1.0-alpha3", to your composer.json;
Run composer update;
I'm not sure what is causing this.
Workaround solution:
Add simplemde-markdown-editor in repositories of your composer.json file:
Even workaround solution prevents the error, module itself still can't be enabled if you don't add "drupal/markdown": "1.2", as a dependency under your main composer.json, but this might be scope of another issue?
The text was updated successfully, but these errors were encountered:
Add simplemde-markdown-editor in repositories of your composer.json file:
Since this is a Drupal integration module it should be stated clearly which composer.json file is referred to here. The composer.json file of the module or of Drupal core.
I also added a new issue on D.O. regarding this issue since there is no issue reflecting the fact that this module is not installable via composer at the moment by using the Drupal docs recommended way. https://www.drupal.org/project/simplemde/issues/3008627
You may run into problems when using custom repositories because Composer does not load the repositories of your requirements, so you have to redefine those repositories in all your composer.json files.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
While trying to install this module using composer I'm getting following error:
Steps to reproduce:
"drupal/simplemde": "1.0-alpha3",
to your composer.json;composer update
;I'm not sure what is causing this.
Workaround solution:
Add
simplemde-markdown-editor
inrepositories
of your composer.json file:Even workaround solution prevents the error, module itself still can't be enabled if you don't add
"drupal/markdown": "1.2",
as a dependency under your maincomposer.json
, but this might be scope of another issue?The text was updated successfully, but these errors were encountered: