Skip to content

Commit 22ddf82

Browse files
committed
Drop support for Symfony lower than 6.4 and PHP lower than 8.2
1 parent b9cd6d8 commit 22ddf82

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ jobs:
3737
strategy:
3838
fail-fast: false
3939
matrix:
40-
php: [ '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
40+
php: [ '8.2', '8.3', '8.4' ]
4141
min_stability: [ '' ]
4242
name_suffix: [ '' ]
4343
composer_flags: [ '' ]
4444
include:
4545
- php: '8.4'
4646
min_stability: 'dev'
4747
name_suffix: ' (dev deps)'
48-
- php: '7.4'
48+
- php: '8.2'
4949
min_stability: ''
5050
name_suffix: ' (lowest deps)'
5151
composer_flags: '--prefer-lowest'

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
}
1212
],
1313
"require": {
14-
"php": ">=7.4",
15-
"symfony/asset": "^4.4.13 || ^5.3 || ^6.0 || ^7.0",
16-
"symfony/cache": "^4.4.13 || ^5.3 || ^6.0 || ^7.0",
14+
"php": ">=8.2",
15+
"symfony/asset": "^6.4 || ^7.0",
16+
"symfony/cache": "^6.4 || ^7.0",
1717
"symfony/config": "^4.4 || ^5.3 || ^6.0 || ^7.0",
18-
"symfony/dependency-injection": "^4.4.13 || ^5.3 || ^6.0 || ^7.0",
19-
"symfony/finder": "^4.4.13 || ^5.3 || ^6.0 || ^7.0",
20-
"symfony/framework-bundle": "^4.4.13 || ^5.3 || ^6.0 || ^7.0",
21-
"symfony/http-kernel": "^4.4.13 || ^5.3 || ^6.0 || ^7.0"
18+
"symfony/dependency-injection": "^6.4 || ^7.0",
19+
"symfony/finder": "^6.4 || ^7.0",
20+
"symfony/framework-bundle": "^6.4 || ^7.0",
21+
"symfony/http-kernel": "^6.4 || ^7.0"
2222
},
2323
"require-dev": {
2424
"jangregor/phpstan-prophecy": "^1.0",
@@ -28,7 +28,7 @@
2828
"phpstan/phpstan-phpunit": "^1.0",
2929
"phpstan/phpstan-symfony": "^1.1",
3030
"phpunit/phpunit": "^9.5",
31-
"symfony/phpunit-bridge": "^5.3 || ^6.0 || ^7.0"
31+
"symfony/phpunit-bridge": "^7.3.4"
3232
},
3333
"autoload": {
3434
"psr-4": {

0 commit comments

Comments
 (0)