Skip to content

Commit cd24976

Browse files
committed
Drop support for PHP 7.& and Symfony 4
1 parent f3446f6 commit cd24976

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
php: [ '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
25+
php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
2626
name_suffix: ['']
2727
stability: ['stable']
2828
composer_flags: ['']
2929
include:
30-
- php: '7.1'
30+
- php: '7.2'
3131
name_suffix: ' (lowest deps)'
3232
stability: 'stable'
3333
composer_flags: '--prefer-lowest'
34-
- php: '8.0'
34+
- php: '8.2'
3535
name_suffix: ' (dev deps)'
3636
stability: 'dev'
3737
composer_flags: ''

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@
1212
}
1313
],
1414
"require": {
15-
"php": "^7.1.3 || ^8.0",
16-
"symfony/config": "^4.4 || ^5.2 || ^6.0",
17-
"symfony/dependency-injection": "^4.4 || ^5.2 || ^6.0",
18-
"symfony/event-dispatcher": "^4.4 || ^5.2 || ^6.0",
19-
"symfony/http-kernel": "^4.4 || ^5.2 || ^6.0",
15+
"php": "^7.2.5 || ^8.0",
16+
"symfony/config": "^5.4 || ^6.0",
17+
"symfony/dependency-injection": "^5.4 || ^6.0",
18+
"symfony/event-dispatcher": "^5.4 || ^6.0",
19+
"symfony/http-kernel": "^5.4 || ^6.0",
2020
"gedmo/doctrine-extensions": "^2.3.12 || ^3.0.0"
2121
},
2222
"require-dev": {
23-
"symfony/mime": "^4.4 || ^5.2 || ^6.0",
24-
"symfony/phpunit-bridge": "^v5.2.4 || ^6.0",
25-
"symfony/security-core": "^4.4 || ^5.2 || ^6.0"
23+
"symfony/mime": "^5.4 || ^6.0",
24+
"symfony/phpunit-bridge": "^v5.4 || ^6.0",
25+
"symfony/security-core": "^5.4 || ^6.0"
2626
},
2727
"suggest": {
2828
"doctrine/doctrine-bundle": "to use the ORM extensions",

0 commit comments

Comments
 (0)