Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [Unreleased]

### Added

- Support for PHPUnit `13`

## 6.9.0 - 2026-01-18

### Added
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
"require": {
"php": "~8.2",
"symfony/var-dumper": "~6.0|~7.0|~8.0",
"phpunit/phpunit": "~10.0|~11.0|~12.0",
"phpunit/php-timer": "~6.0|~7.0|~8.0",
"phpunit/php-code-coverage": "~10.1|~11.0|~12.0"
"phpunit/phpunit": "~10.0|~11.0|~12.0|~13.0",
"phpunit/php-timer": "~6.0|~7.0|~8.0|~9.0",
"phpunit/php-code-coverage": "~10.1|~11.0|~12.0|~13.0"
},
"autoload": {
"psr-4": {
Expand Down
3 changes: 2 additions & 1 deletion tests/Set/CompositeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ public function testImmutable()
$this->assertInstanceOf(
Set::class,
Composite::immutable(
static function() {},
static function() {
},
FromGenerator::of(static function() {
yield 'e';
yield 'f';
Expand Down
3 changes: 2 additions & 1 deletion tests/Set/DecorateTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ public function testImmutable()
$this->assertInstanceOf(
Set::class,
Decorate::immutable(
static function() {},
static function() {
},
FromGenerator::of(static function() {
yield 'e';
yield 'f';
Expand Down
3 changes: 2 additions & 1 deletion tests/Set/FromGeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ public function testThrowWhenTheCallableDoesntReturnAGenerator()
$this->expectException(\TypeError::class);
$this->expectExceptionMessage('Argument 1 must be of type callable(): \Generator');

FromGenerator::of(static function() {});
FromGenerator::of(static function() {
});
}

public function testTake()
Expand Down