Skip to content

Commit b6853c5

Browse files
committed
CI - symfony 8.0
1 parent 8cef4a1 commit b6853c5

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/unit-tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
matrix:
1414
os: [ ubuntu-latest, windows-latest, macos-latest ]
1515
php: [ '8.1', '8.2', '8.3', '8.4', '8.5' ]
16-
symfony: [ '^6.4', '^7.3' ]
16+
symfony: [ '^6.4', '^7.3', '^8.0' ]
1717
exclude:
1818
- php: '8.1'
1919
symfony: '^7.3'
@@ -26,6 +26,11 @@ jobs:
2626
with:
2727
php-version: "${{ matrix.php }}"
2828

29+
- name: Update compatible amphp/http-client version
30+
if: ${{ matrix.symfony == '^8.0' }}
31+
run: |
32+
composer require amphp/http-client:"^5.3" --dev --no-update
33+
2934
- name: Install dependencies
3035
run: composer install --prefer-dist --no-progress
3136

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
"ext-curl": "*",
3737
"ext-json": "*",
3838
"phpunit/phpunit": "^10.5 || ^11.5 || ^12.4",
39-
"symfony/http-client": "^6.4 || ^7.3",
40-
"symfony/process": "^6.4 || ^7.3",
39+
"symfony/http-client": "^6.4 || ^7.3 || ^8.0",
40+
"symfony/process": "^6.4 || ^7.3 || ^8.0",
4141
"amphp/http-client": "^4.2.1"
4242
},
4343
"suggest": {

0 commit comments

Comments
 (0)