Skip to content

Commit 172a848

Browse files
minor symfony#50607 Run unit tests with PHP 8.3 (derrabus)
This PR was merged into the 5.4 branch. Discussion ---------- Run unit tests with PHP 8.3 | Q | A | ------------- | --- | Branch? | 5.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | N/A | License | MIT | Doc PR | N/A It's that time of the year… PHP 8.3.0-alpha1 has been released, so we might start to test against that new version. Right now, it looks like PHP 8.3 will be a pretty boring release. The good kind of boring, of course! This PR bumps the PHP 8.2 job to 8.3 and the high/low deps jobs from PHP 8.1 to 8.2. All dependency bumps in the component's composer.json files were done to fix test failures on the low-deps run. Commits ------- d51bce6 Run unit tests with PHP 8.3
2 parents a267738 + d51bce6 commit 172a848

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/unit-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ jobs:
2828
include:
2929
- php: '7.2'
3030
- php: '7.4'
31-
- php: '8.1'
31+
- php: '8.2'
3232
mode: high-deps
33-
- php: '8.1'
34-
mode: low-deps
3533
- php: '8.2'
34+
mode: low-deps
35+
- php: '8.3'
3636
#mode: experimental
3737
fail-fast: false
3838

src/Symfony/Bundle/FrameworkBundle/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"symfony/string": "^5.0|^6.0",
6161
"symfony/translation": "^5.3|^6.0",
6262
"symfony/twig-bundle": "^4.4|^5.0|^6.0",
63-
"symfony/validator": "^5.2|^6.0",
63+
"symfony/validator": "^5.3.11|^6.0",
6464
"symfony/workflow": "^5.2|^6.0",
6565
"symfony/yaml": "^4.4|^5.0|^6.0",
6666
"symfony/property-info": "^4.4|^5.0|^6.0",
@@ -93,7 +93,7 @@
9393
"symfony/translation": "<5.3",
9494
"symfony/twig-bridge": "<4.4",
9595
"symfony/twig-bundle": "<4.4",
96-
"symfony/validator": "<5.2",
96+
"symfony/validator": "<5.3.11",
9797
"symfony/web-profiler-bundle": "<4.4",
9898
"symfony/workflow": "<5.2"
9999
},

src/Symfony/Component/Runtime/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"require-dev": {
2424
"composer/composer": "^1.0.2|^2.0",
25-
"symfony/console": "^4.4.30|^5.3.7|^6.0",
25+
"symfony/console": "^4.4.30|^5.4.9|^6.0.9",
2626
"symfony/dotenv": "^5.1|^6.0",
2727
"symfony/http-foundation": "^4.4.30|^5.3.7|^6.0",
2828
"symfony/http-kernel": "^4.4.30|^5.3.7|^6.0"

0 commit comments

Comments
 (0)