Skip to content

Commit

Permalink
Merge pull request #10 from php-etl/feature/update-composer
Browse files Browse the repository at this point in the history
update psr/log
  • Loading branch information
JoMessina authored Apr 7, 2023
2 parents dc85d26 + d00c36d commit 3fb90d9
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 22 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"prefer-stable": true,
"require": {
"php": "^8.2",
"psr/log": "^1.1",
"psr/log": "^3.0",
"php-etl/bucket": "*",
"php-etl/pipeline-contracts": "0.4.0",
"php-etl/bucket-contracts": "0.2.0"
Expand Down
20 changes: 10 additions & 10 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 5 additions & 11 deletions tests/unit/PipelineTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,9 @@
/**
* @internal
*/
#[\PHPUnit\Framework\Attributes\CoversNothing]
final class PipelineTest extends IterableTestCase
{
#[\PHPUnit\Framework\Attributes\Test]
public function extractorWithoutFlush(): void
public function testExtractorWithoutFlush(): void
{
$pipeline = new Pipeline(new PipelineRunner(new NullLogger()));

Expand All @@ -42,8 +40,7 @@ public function extract(): iterable
);
}

#[\PHPUnit\Framework\Attributes\Test]
public function transformerWithoutFlush(): void
public function testTransformerWithoutFlush(): void
{
$pipeline = new Pipeline(new PipelineRunner(new NullLogger()));

Expand All @@ -65,8 +62,7 @@ public function transform(): \Generator
);
}

#[\PHPUnit\Framework\Attributes\Test]
public function transformerWithFlush(): void
public function testTransformerWithFlush(): void
{
$pipeline = new Pipeline(new PipelineRunner(new NullLogger()));

Expand All @@ -93,8 +89,7 @@ public function flush(): ResultBucketInterface
);
}

#[\PHPUnit\Framework\Attributes\Test]
public function loaderWithoutFlush(): void
public function testLoaderWithoutFlush(): void
{
$pipeline = new Pipeline(new PipelineRunner(new NullLogger()));

Expand All @@ -116,8 +111,7 @@ public function load(): \Generator
);
}

#[\PHPUnit\Framework\Attributes\Test]
public function loaderWithFlush(): void
public function testLoaderWithFlush(): void
{
$pipeline = new Pipeline(new PipelineRunner(new NullLogger()));

Expand Down

0 comments on commit 3fb90d9

Please sign in to comment.