Skip to content

Commit 56db02b

Browse files
authored
Merge pull request #22 from guillaume-sainthillier/claude/symfony8-php84-ci-GFflG
Add Symfony 8 support and PHP 8.3/8.4 to CI
2 parents c88eaeb + 724e6b2 commit 56db02b

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/unit-tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
13+
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
1717
- name: Install PHP
1818
uses: shivammathur/setup-php@v2
1919
with:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
build
22
composer.lock
33
vendor
4+
.phpunit.result.cache

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
],
1313
"require": {
1414
"league/glide": "^2.0",
15-
"symfony/http-foundation": "^2.3|^3.0|^4.0|^5.0|^6.0|^7.0"
15+
"symfony/http-foundation": "^2.3|^3.0|^4.0|^5.0|^6.0|^7.0|^8.0"
1616
},
1717
"require-dev": {
1818
"mockery/mockery": "^1.3.3",

0 commit comments

Comments
 (0)