Skip to content
/ streams Public

Commit 0d355c7

Browse files
committed
Prepare to release
1 parent a6d9bb6 commit 0d355c7

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"require-dev": {
4040
"phpunit/phpunit": "^10.5.41",
4141
"mockery/mockery": "^1.6.12",
42-
"spiral/files": "^3.16",
42+
"spiral/files": "^3.15.6",
4343
"nyholm/psr7": "^1.8",
4444
"vimeo/psalm": "^6.0"
4545
},
@@ -55,7 +55,7 @@
5555
},
5656
"extra": {
5757
"branch-alias": {
58-
"dev-master": "3.16.x-dev"
58+
"dev-master": "3.15.x-dev"
5959
}
6060
},
6161
"config": {

tests/StreamsTest.php

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ public function testGetResource(): void
6161
self::assertSame('sample', \stream_get_contents($resource, 6, 0));
6262
}
6363

64-
#[\PHPUnit\Framework\Attributes\RequiresPhp('< 8.0')]
64+
/**
65+
* @requires PHP < 8.0
66+
*/
6567
public function testException(): void
6668
{
6769
try {
@@ -77,7 +79,9 @@ public function testException(): void
7779
}
7880
}
7981

80-
#[\PHPUnit\Framework\Attributes\RequiresPhp('>= 8.0')]
82+
/**
83+
* @requires PHP >= 8.0
84+
*/
8185
public function testExceptionPHP8(): void
8286
{
8387
try {

0 commit comments

Comments
 (0)