Skip to content

Commit d0d9e8d

Browse files
authored
feat: Bump min PHP version to 8.3 (#23)
1 parent 3e1f9ca commit d0d9e8d

File tree

7 files changed

+1149
-453
lines changed

7 files changed

+1149
-453
lines changed

.github/workflows/cs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
# To also adjust the PHP version in the following files:
2727
# - vendor-bin/php-cs-fixer/composer.json
2828
# - vendor-bin/rector/composer.json
29-
- "8.1"
29+
- "8.3"
3030

3131
steps:
3232
- name: "Check out repository code"

.github/workflows/tests.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ jobs:
2121
fail-fast: true
2222
matrix:
2323
php:
24-
- "8.1"
25-
- "8.2"
2624
- "8.3"
2725
- "8.4"
2826
symfony:
@@ -32,9 +30,6 @@ jobs:
3230
dependency-versions:
3331
- "highest"
3432
- "lowest"
35-
exclude:
36-
- php: "8.1"
37-
symfony: "7.*.*"
3833

3934
steps:
4035
- name: "Check out repository code"

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
}
1414
],
1515
"require": {
16-
"php": "^8.1",
16+
"php": "^8.3",
1717
"symfony/filesystem": "^6.4 || ^7.0"
1818
},
1919
"require-dev": {
2020
"bamarni/composer-bin-plugin": "^1.4",
2121
"ergebnis/composer-normalize": "^2.28",
2222
"infection/infection": ">=0.26",
23-
"phpunit/phpunit": "^10.3",
23+
"phpunit/phpunit": "^12",
2424
"symfony/finder": "^6.4 || ^7.0"
2525
},
2626
"prefer-stable": true,
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"config": {
33
"platform": {
4-
"php": "8.1"
4+
"php": "8.3"
55
}
66
},
77
"require-dev": {
88
"friendsofphp/php-cs-fixer": "^v3.0",
9-
"theofidry/php-cs-fixer-config": "^1.0"
9+
"fidry/php-cs-fixer-config": "^1.0"
1010
}
1111
}

0 commit comments

Comments
 (0)