Skip to content

Commit dcc6de2

Browse files
authored
Merge pull request #252 from php-http/sf8
allow symfony 8 and test with php 8.5
2 parents 45b1c92 + 8a28aea commit dcc6de2

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
php: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
16+
php: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
1717

1818
steps:
1919
- name: Checkout code
@@ -26,10 +26,6 @@ jobs:
2626
tools: composer:v2
2727
coverage: none
2828

29-
- name: Emulate PHP 8.3
30-
run: composer config platform.php 8.3.999
31-
if: matrix.php == '8.4'
32-
3329
- name: Install PHP dependencies
3430
run: composer update --prefer-dist --no-interaction --no-progress
3531

@@ -42,7 +38,7 @@ jobs:
4238
strategy:
4339
fail-fast: false
4440
matrix:
45-
php: ['7.1', '7.4', '8.2', '8.3']
41+
php: ['7.1', '7.4', '8.2', '8.5']
4642

4743
steps:
4844
- name: Checkout code
@@ -65,6 +61,7 @@ jobs:
6561
name: Symfony ${{ matrix.symfony }} LTS
6662
runs-on: ubuntu-latest
6763
strategy:
64+
fail-fast: false
6865
matrix:
6966
include:
7067
- symfony: '4.4.*'
@@ -73,8 +70,10 @@ jobs:
7370
php-version: '7.4'
7471
- symfony: '6.4.*'
7572
php-version: '8.2'
76-
- symfony: '7.0.*'
73+
- symfony: '7.4.*'
7774
php-version: '8.2'
75+
- symfony: '8.*'
76+
php-version: '8.5'
7877

7978
steps:
8079
- name: Checkout code

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## 2.7.3 - 2025-11-29
4+
5+
- Allow installation with Symfony 8.
6+
- Run tests with PHP 8.5.
7+
38
## 2.7.2 - 2024-09-24
49

510
- Updated code to not raise warnings for nullable parameters in PHP 8.4.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"psr/http-client": "^1.0",
1818
"psr/http-factory": "^1.0",
1919
"psr/http-message": "^1.0 || ^2.0",
20-
"symfony/options-resolver": "~4.0.15 || ~4.1.9 || ^4.2.1 || ^5.0 || ^6.0 || ^7.0",
20+
"symfony/options-resolver": "~4.0.15 || ~4.1.9 || ^4.2.1 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
2121
"symfony/polyfill-php80": "^1.17"
2222
},
2323
"require-dev": {

0 commit comments

Comments
 (0)