Skip to content

Commit 753b829

Browse files
authored
Merge pull request #1081 from annuh/1080-support-php-8-5
feat: add support for PHP 8.5
2 parents 20d6517 + 708d0c7 commit 753b829

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
fail-fast: true
3434
matrix:
35-
php-version: [ '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
35+
php-version: [ '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5' ]
3636
steps:
3737
- uses: "actions/checkout@v4"
3838
- uses: "shivammathur/setup-php@v2"
@@ -88,7 +88,7 @@ jobs:
8888
strategy:
8989
fail-fast: true
9090
matrix:
91-
php-version: [ '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
91+
php-version: [ '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5' ]
9292
steps:
9393
- uses: "actions/checkout@v4"
9494
- uses: "shivammathur/setup-php@v2"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ This package is compliant with [PSR-1][], [PSR-2][], [PSR-4][], and [PSR-7][]. I
2424

2525
We support the following versions of PHP:
2626

27+
* PHP 8.5
2728
* PHP 8.4
2829
* PHP 8.3
2930
* PHP 8.2

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"sort-packages": true
77
},
88
"require": {
9-
"php": "^7.1 || >=8.0.0 <8.5.0",
9+
"php": "^7.1 || >=8.0.0 <8.6.0",
1010
"ext-json": "*",
1111
"guzzlehttp/guzzle": "^6.5.8 || ^7.4.5"
1212
},

0 commit comments

Comments
 (0)