From 399958ed108068790004f4c6454248c6b0f8dab9 Mon Sep 17 00:00:00 2001 From: Mike Madison Date: Wed, 23 Mar 2022 10:34:39 -0700 Subject: [PATCH] Fixes #6 to correct blt 12.x behat changes. --- composer.json | 7 ++++++- src/Blt/Plugin/Commands/BehatDdevCommand.php | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 807e71a..069e2d2 100644 --- a/composer.json +++ b/composer.json @@ -11,7 +11,12 @@ "role": "Maintainer" } ], - "require": {}, + "require": { + "acquia/blt-behat": "dev-master" + }, + "conflict": { + "acquia/blt": "<=12.5.1" + }, "autoload": { "psr-4": { "Lcatlett\\BltDdev\\": "./src/" diff --git a/src/Blt/Plugin/Commands/BehatDdevCommand.php b/src/Blt/Plugin/Commands/BehatDdevCommand.php index 3ead89f..886b0a3 100644 --- a/src/Blt/Plugin/Commands/BehatDdevCommand.php +++ b/src/Blt/Plugin/Commands/BehatDdevCommand.php @@ -2,7 +2,7 @@ namespace Lcatlett\BltDdev\Blt\Plugin\Commands; -use Acquia\Blt\Robo\Commands\Tests\BehatCommand; +use Acquia\BltBehat\Blt\Plugin\Commands\BehatCommand; class BehatDdevCommand extends BehatCommand {