Skip to content

Commit 2f8d2fe

Browse files
committed
PHP 8.2 is supported
1 parent 7600424 commit 2f8d2fe

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
php: [8.0, 8.1]
11+
php: [8.0, 8.1, 8.2]
1212

1313
name: PHP ${{ matrix.php }} tests
1414
steps:

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
}
1212
],
1313
"require": {
14-
"php": ">=8.0 <8.2"
14+
"php": ">=8.0 <8.3"
1515
},
1616
"require-dev": {
1717
"nette/tester": "^2.4"

tests/Github/Http/CachedClient.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class CachingTestCase extends Tester\TestCase
9090
Assert::same($this->client, $this->client->onRequest($cb));
9191
Assert::same($this->client, $this->client->onResponse($cb));
9292
}, [
93-
[E_USER_NOTICE, "Inner onRequest called: Closure::%A%"],
93+
[E_USER_NOTICE, 'Inner onRequest called: %a?%Closure::%A%'],
9494
[E_USER_NOTICE, 'Inner onResponse called: NULL'],
9595
]);
9696

0 commit comments

Comments
 (0)