Skip to content

Commit d6424fe

Browse files
committed
Update minimum PHP to 8.1 to follow LTS
Test PHP 8.3 and 8.4
1 parent 9d2da70 commit d6424fe

File tree

3 files changed

+447
-294
lines changed

3 files changed

+447
-294
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: [8.0, 8.1, 8.2]
12+
php: [8.1, 8.2, 8.3, 8.4]
1313
stability: [prefer-lowest, prefer-stable]
1414

1515
name: PHP ${{ matrix.php }} - ${{ matrix.stability }}

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
"issues": "https://github.com/tomzx/php-semver-checker/issues"
2121
},
2222
"require": {
23-
"php": "^8.0",
23+
"php": "^8.1",
2424

2525
"hassankhan/config": "^3.0",
26-
"nikic/php-parser": "^4.0",
27-
"symfony/console": "^6.0",
28-
"symfony/yaml": "^6.0",
26+
"nikic/php-parser": "^5.0",
27+
"symfony/console": "^6.0 || ^7.0",
28+
"symfony/yaml": "^6.0 || ^7.0",
2929
"tomzx/finder": "^0.2"
3030
},
3131
"require-dev": {
@@ -47,7 +47,7 @@
4747
},
4848
"config": {
4949
"platform": {
50-
"php": "8.0.2"
50+
"php": "8.1.0"
5151
}
5252
},
5353
"extra": {

0 commit comments

Comments
 (0)