From 62ea262cc05c669c4a7e543b01919c8547398667 Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Mon, 27 Feb 2023 23:39:05 -0500 Subject: [PATCH 1/2] Fix drupal/console-en exact version constraints should be avoided The `1.9.7` exact version constrains restrict version compatibility quite a bit with semver. May want to use `~` here instead. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 908d071..f6675ad 100644 --- a/composer.json +++ b/composer.json @@ -43,7 +43,7 @@ "require": { "php": ">=7.0.8", "dflydev/dot-access-configuration": "^1.0.4", - "drupal/console-en": "1.9.7", + "drupal/console-en": "~1.9.7", "stecman/symfony-console-completion": "~0.7", "symfony/config": "~3.0|^4.4", "symfony/console": "~3.0|^4.4", From ebbb6f2fd1c19c45a39f5430f61d2870fd27de7e Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Tue, 28 Feb 2023 00:00:16 -0500 Subject: [PATCH 2/2] Relax version target even further --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index f6675ad..7f0972f 100644 --- a/composer.json +++ b/composer.json @@ -43,7 +43,7 @@ "require": { "php": ">=7.0.8", "dflydev/dot-access-configuration": "^1.0.4", - "drupal/console-en": "~1.9.7", + "drupal/console-en": "^1.9.7", "stecman/symfony-console-completion": "~0.7", "symfony/config": "~3.0|^4.4", "symfony/console": "~3.0|^4.4",