Skip to content

Commit 71bd409

Browse files
committed
Added missing namespaces + updated dependencies
1 parent f45cdd0 commit 71bd409

File tree

3 files changed

+187
-20
lines changed

3 files changed

+187
-20
lines changed

composer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@
1919
"php": "^8.2",
2020
"symfony/console": "^6.0",
2121
"php-etl/pipeline-contracts": "0.4.*",
22+
"php-etl/satellite-contracts": "0.1.*",
2223
"php-etl/pipeline": "*",
2324
"php-etl/console-state": "*",
24-
"php-etl/pipeline-console-runtime": "*"
25+
"php-etl/pipeline-console-runtime": "*",
26+
"php-etl/action-console-runtime": "*"
2527
},
2628
"require-dev": {
2729
"rector/rector": "^0.15",

composer.lock

Lines changed: 181 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Console.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
use Kiboko\Component\Action\Action;
88
use Kiboko\Component\Pipeline\Pipeline;
99
use Kiboko\Component\State;
10+
use Kiboko\Contract\Satellite\RunnableInterface as JobRunnableInterface;
1011
use Kiboko\Contract\Pipeline\PipelineRunnerInterface;
12+
use Kiboko\Component\Runtime\Action\Console as ActionConsoleRuntime;
13+
use Kiboko\Component\Runtime\Pipeline\Console as PipelineConsoleRuntime;
1114
use Symfony\Component\Console\Output\ConsoleOutput;
1215

1316
final class Console implements WorkflowRuntimeInterface

0 commit comments

Comments
 (0)