Skip to content

Commit 03075b7

Browse files
committed
allow installation with symfony 8 and test on php 8.5
1 parent 033bf71 commit 03075b7

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
17+
php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
1818

1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v6
2222

2323
- name: Setup PHP
2424
uses: shivammathur/setup-php@v2
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Checkout code
41-
uses: actions/checkout@v2
41+
uses: actions/checkout@v6
4242

4343
- name: Setup PHP
4444
uses: shivammathur/setup-php@v2
@@ -58,12 +58,12 @@ jobs:
5858

5959
steps:
6060
- name: Checkout code
61-
uses: actions/checkout@v2
61+
uses: actions/checkout@v6
6262

6363
- name: Setup PHP
6464
uses: shivammathur/setup-php@v2
6565
with:
66-
php-version: 8.2
66+
php-version: 8.5
6767
coverage: none
6868

6969
- name: Install dependencies

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+
## 1.2.4
4+
5+
- Support Symfony 8
6+
- Test with PHP 8.5
7+
38
## 1.2.3 - 2024-01-04
49

510
- Support Symfony 7

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
"guzzlehttp/psr7": "^1.7 || ^2.0",
1616
"php-http/client-common": "^2.0",
1717
"psr/log": "^1.1 || ^2.0 || ^3.0",
18-
"symfony/filesystem": "^4.0|^5.0|^6.0|^7.0",
19-
"symfony/options-resolver": "^4.0|^5.0|^6.0|^7.0"
18+
"symfony/filesystem": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
19+
"symfony/options-resolver": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0"
2020
},
2121
"require-dev": {
22-
"symfony/phpunit-bridge": "^4.2|^5.0|^6.0|^7.0",
22+
"symfony/phpunit-bridge": "^4.2 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
2323
"phpstan/phpstan": "^1.0"
2424
},
2525
"autoload": {

0 commit comments

Comments
 (0)