From 9ae988ce4991175ab9d5a5b24dc7d442c4e59725 Mon Sep 17 00:00:00 2001 From: Claudiu Cristea Date: Wed, 6 Dec 2023 19:52:41 +0200 Subject: [PATCH 1/3] Remove task-runner dependency --- composer.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/composer.json b/composer.json index d94fbb9..03a91d5 100644 --- a/composer.json +++ b/composer.json @@ -5,8 +5,7 @@ "type": "library", "require": { "php": ">=7.4", - "ext-json": "*", - "openeuropa/task-runner": "^1.0.0-beta7 || ^2.0" + "ext-json": "*" }, "require-dev": { "phpunit/phpunit": "~7 || ~8 || ~9", From 562b3edb08acd04c362c8ba3551fe022e0e74f76 Mon Sep 17 00:00:00 2001 From: Claudiu Cristea Date: Wed, 6 Dec 2023 19:59:13 +0200 Subject: [PATCH 2/3] Depend on ec-europa/toolkit --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 03a91d5..3758015 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,8 @@ "type": "library", "require": { "php": ">=7.4", - "ext-json": "*" + "ext-json": "*", + "ec-europa/toolkit": "^9 || ^10" }, "require-dev": { "phpunit/phpunit": "~7 || ~8 || ~9", From 26d77e2780f8dfe586f0e61c491f24e6daaffa33 Mon Sep 17 00:00:00 2001 From: Claudiu Cristea Date: Wed, 6 Dec 2023 20:01:36 +0200 Subject: [PATCH 3/3] Change base class --- src/TaskRunner/Commands/ComposerCommands.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TaskRunner/Commands/ComposerCommands.php b/src/TaskRunner/Commands/ComposerCommands.php index b9f9317..8dcb96d 100644 --- a/src/TaskRunner/Commands/ComposerCommands.php +++ b/src/TaskRunner/Commands/ComposerCommands.php @@ -4,7 +4,7 @@ namespace TaskRunner\Composer\TaskRunner\Commands; -use OpenEuropa\TaskRunner\Commands\AbstractCommands; +use EcEuropa\Toolkit\TaskRunner\AbstractCommands; use Robo\Collection\CollectionBuilder; use Robo\Task\Composer\Tasks;