From 6e39303eb801d2ac452dcc957a57cc43eb834f70 Mon Sep 17 00:00:00 2001 From: Steve Persch's alt account <102996065+stevector-streaming@users.noreply.github.com> Date: Wed, 19 Feb 2025 12:35:11 -0600 Subject: [PATCH] Fixing composer path for scaffolding --- src/Utils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Utils.php b/src/Utils.php index 2bdc49b..4774f1c 100644 --- a/src/Utils.php +++ b/src/Utils.php @@ -25,7 +25,7 @@ public static function stopScaffolding(): void { $site_path = DRUPAL_ROOT . '/' . $kernel->getSitePath(); self::useSettingsFromVendor($site_path); - $composer_json_path = DRUPAL_ROOT . '/composer.json'; + $composer_json_path = DRUPAL_ROOT . '/../composer.json'; self::removePantheonScaffolding($composer_json_path); }