Skip to content

Commit 69e3299

Browse files
committed
Fixes #12
Symfony 7 support PHP 8.3 support
1 parent 491e61e commit 69e3299

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
strategy:
1515
max-parallel: 10
1616
matrix:
17-
php: ['7.2', '7.3', '7.4', '8.0', '8.1']
18-
sf_version: ['4.4.*', '5.0.*', '6.*']
17+
php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
18+
sf_version: ['4.4.*', '5.0.*', '6.*', '7.*']
1919

2020
steps:
2121
- uses: actions/checkout@v2

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"license": "MIT",
55
"require": {
66
"php": "^7.2 || ^8.0",
7-
"symfony/framework-bundle": "^4.4.7 || ^5.0.7 || 6.*",
8-
"symfony/http-foundation": "^4.4.7 || ^5.0.7 || 6.*",
9-
"symfony/browser-kit": "^4.4.7 || ^5.0.7 || 6.*",
7+
"symfony/framework-bundle": "^4.4.7 || ^5.0.7 || 6.* || 7.*",
8+
"symfony/http-foundation": "^4.4.7 || ^5.0.7 || 6.* || 7.*",
9+
"symfony/browser-kit": "^4.4.7 || ^5.0.7 || 6.* || 7.*",
1010
"ext-json": "*"
1111
},
1212
"autoload": {
@@ -20,6 +20,6 @@
2020
}
2121
},
2222
"require-dev": {
23-
"symfony/phpunit-bridge": "^5.0 || 6.*"
23+
"symfony/phpunit-bridge": "^5.0 || 6.* || 7.*"
2424
}
2525
}

0 commit comments

Comments
 (0)