Skip to content

Commit 0c3d9d9

Browse files
authored
Merge pull request #21 from php-etl/fix/configurator-dependencies
Fixed dependencies into the configurator attribute
2 parents d64efd4 + 70e0cfa commit 0c3d9d9

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/Service.php

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@
1414
#[Configurator\Pipeline(
1515
name: 'fastmap',
1616
dependencies: [
17-
'php-etl/pipeline-contracts:~0.4.0@dev',
18-
'php-etl/bucket-contracts:~0.2.0@dev',
19-
'php-etl/bucket:~0.3.0@dev',
17+
'php-etl/pipeline-contracts:0.4.*',
18+
'php-etl/bucket-contracts:0.2.*',
19+
'php-etl/bucket:"*"',
2020
],
2121
steps: [
2222
new Configurator\Pipeline\StepTransformer(null),
2323
],
24-
)] final readonly class Service implements Configurator\PipelinePluginInterface
24+
)]
25+
final readonly class Service implements Configurator\PipelinePluginInterface
2526
{
2627
private Processor $processor;
2728
private Configurator\PluginConfigurationInterface $configuration;

0 commit comments

Comments
 (0)