Skip to content

Commit 34f2d03

Browse files
committed
Bump supported versions to include PHP8.2
Adds PHP8.2 to the CI test suite and README. Switched the version constraint on PHP in Composer to explicitly list the supported PHP8 versions, since ^8.0 allows versions 8.2, 8.3, ... that may not be officially tested yet.
1 parent de2f722 commit 34f2d03

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
php: [7.3, 7.4, 8.0, 8.1]
13+
php: [7.3, 7.4, 8.0, 8.1, 8.2]
1414
stability: [prefer-lowest, prefer-stable]
1515

1616
name: PHP ${{ matrix.php }} - ${{ matrix.stability }} Test

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ then run `composer update`.
2626

2727
## Supported platforms
2828

29-
* PHP - supports PHP versions 7.3, 7.4, 8.0, and 8.1.
29+
* PHP - supports PHP versions 7.3, 7.4, 8.0, 8.1, and 8.2.
3030
* Laravel - version 8.29 and above has built-in support for Pusher Channels as a [Broadcasting backend](https://laravel.com/docs/master/broadcasting).
3131
* Other PHP frameworks - supported provided you are using a supported version of PHP.
3232

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"keywords": ["php-pusher-server", "pusher", "rest", "realtime", "real-time", "real time", "messaging", "push", "trigger", "publish", "events"],
55
"license": "MIT",
66
"require": {
7-
"php": "^7.3|^8.0",
7+
"php": "^7.3|8.0|8.1|8.2",
88
"ext-curl": "*",
99
"ext-json": "*",
1010
"guzzlehttp/guzzle": "^7.2",

0 commit comments

Comments
 (0)