Skip to content

Commit f3b602b

Browse files
committed
Fixed the dockerfile when the composer autoload config is empty
1 parent dc4cf79 commit f3b602b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Service.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
'ext-pdo',
1515
],
1616
steps: [
17-
"extractor" => "extractor",
18-
"lookup" => "transformer",
19-
"loader" => "loader",
17+
new Configurator\Pipeline\StepExtractor(),
18+
new Configurator\Pipeline\StepTransformer('lookup'),
19+
new Configurator\Pipeline\StepLoader(),
2020
],
2121
)]
2222
final class Service implements Configurator\PipelinePluginInterface

0 commit comments

Comments
 (0)