From b98a7add7c83f07f9b826308036ef84d4e151103 Mon Sep 17 00:00:00 2001 From: Daniel Bosen Date: Thu, 7 Mar 2024 13:24:57 +0100 Subject: [PATCH 1/2] Allow php-http/discovery plugin --- lib/stages/prepare_build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/stages/prepare_build.sh b/lib/stages/prepare_build.sh index c64228d..e776eaa 100644 --- a/lib/stages/prepare_build.sh +++ b/lib/stages/prepare_build.sh @@ -76,4 +76,5 @@ _stage_prepare_build() { composer config allow-plugins.oomphinc/composer-installers-extender true --no-plugins --working-dir="${DRUPAL_TESTING_DRUPAL_INSTALLATION_DIRECTORY}" composer config allow-plugins.dealerdirect/phpcodesniffer-composer-installer true --no-plugins --working-dir="${DRUPAL_TESTING_DRUPAL_INSTALLATION_DIRECTORY}" composer config allow-plugins.phpstan/extension-installer true --no-plugins --working-dir="${DRUPAL_TESTING_DRUPAL_INSTALLATION_DIRECTORY}" + composer config allow-plugins.php-http/php-http/discovery true --no-plugins --working-dir="${DRUPAL_TESTING_DRUPAL_INSTALLATION_DIRECTORY}" } From 941721e6a2d537c163c0f1ac1a1dfd97f6d7b4cf Mon Sep 17 00:00:00 2001 From: Daniel Bosen Date: Thu, 7 Mar 2024 13:34:57 +0100 Subject: [PATCH 2/2] fix --- lib/stages/prepare_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/stages/prepare_build.sh b/lib/stages/prepare_build.sh index e776eaa..385e576 100644 --- a/lib/stages/prepare_build.sh +++ b/lib/stages/prepare_build.sh @@ -76,5 +76,5 @@ _stage_prepare_build() { composer config allow-plugins.oomphinc/composer-installers-extender true --no-plugins --working-dir="${DRUPAL_TESTING_DRUPAL_INSTALLATION_DIRECTORY}" composer config allow-plugins.dealerdirect/phpcodesniffer-composer-installer true --no-plugins --working-dir="${DRUPAL_TESTING_DRUPAL_INSTALLATION_DIRECTORY}" composer config allow-plugins.phpstan/extension-installer true --no-plugins --working-dir="${DRUPAL_TESTING_DRUPAL_INSTALLATION_DIRECTORY}" - composer config allow-plugins.php-http/php-http/discovery true --no-plugins --working-dir="${DRUPAL_TESTING_DRUPAL_INSTALLATION_DIRECTORY}" + composer config allow-plugins.php-http/discovery true --no-plugins --working-dir="${DRUPAL_TESTING_DRUPAL_INSTALLATION_DIRECTORY}" }