Skip to content

Commit bc45f2f

Browse files
committedNov 16, 2024·
feature #6543 Bump PHP requirements to PHP 8.1 (javiereguiluz)
This PR was squashed before being merged into the 4.x branch. Discussion ---------- Bump PHP requirements to PHP 8.1 We are forced to do this because we want to use Twig Components and those require using PHP 8.1. This should be fine because only 1% of our users still use PHP 8.0 (and ~10% are still in PHP earlier versions): https://packagist.org/packages/easycorp/easyadmin-bundle/php-stats Commits ------- ef2471b Bump PHP requirements to PHP 8.1
2 parents 0e3df22 + ef2471b commit bc45f2f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,12 +83,12 @@ jobs:
8383
stability: "stable"
8484
# Lowest deps support
8585
- os: ubuntu-latest
86-
php_version: "8.0.2"
86+
php_version: "8.1"
8787
composer_args: "--prefer-lowest"
8888
stability: "stable"
8989
# Lowest PHP version support. Remove when it is dropped
9090
- os: ubuntu-latest
91-
php_version: "8.0"
91+
php_version: "8.1"
9292
symfony_version: "5.4"
9393
stability: "stable"
9494
- os: ubuntu-latest

‎composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
}
1313
],
1414
"require": {
15-
"php": ">=8.0.2",
15+
"php": ">=8.1",
1616
"ext-json": "*",
1717
"doctrine/doctrine-bundle": "^2.5",
18-
"doctrine/orm": "^2.10|^3.0",
18+
"doctrine/orm": "^2.12|^3.0",
1919
"symfony/asset": "^5.4|^6.0|^7.0",
2020
"symfony/cache": "^5.4|^6.0|^7.0",
2121
"symfony/config": "^5.4|^6.0|^7.0",

0 commit comments

Comments
 (0)
Please sign in to comment.