Skip to content

Commit a496f92

Browse files
committed
Bump the min PHP version to 8.1
This matches the PHP requirement of Symfony 6.4 LTS which will be the new minimum version.
1 parent 095260b commit a496f92

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,13 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
php:
18-
- '7.4'
19-
- '8.0'
2018
- '8.1'
2119
- '8.2'
2220
- '8.3'
2321
symfony-versions: [false]
2422
include:
2523
- description: 'Symfony 4.*'
26-
php: '7.4'
24+
php: '8.1'
2725
symfony-versions: '^4.4'
2826
- description: 'Symfony 5.*'
2927
php: '8.1'

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
}
2222
],
2323
"require": {
24-
"php": "^7.4 || ^8.0",
24+
"php": "^8.1",
2525
"ext-dom": "*",
2626
"ext-json": "*",
2727
"symfony/config": "^4.4 || ^5.0 || ^6.0 || ^7.0",

tests/Util/CanonicalizerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function canonicalizeProvider()
3333
return [
3434
[null, null],
3535
['FOO', 'foo'],
36-
[chr(171), PHP_VERSION_ID < 50600 ? chr(171) : '?'],
36+
[chr(171), '?'],
3737
];
3838
}
3939
}

0 commit comments

Comments
 (0)