Skip to content

Commit

Permalink
drop PHP < 7.4, Symfony 6.3 and 7.0 support
Browse files Browse the repository at this point in the history
  • Loading branch information
dmaicher committed Jul 29, 2024
1 parent d443193 commit 6089f62
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,17 @@ jobs:
fail-fast: false
matrix:
include:
- php: 7.2
- php: 7.4
composer-flags: --prefer-lowest
- php: 7.3
- php: 7.4
SYMFONY_REQUIRE: 5.4.*
- php: 8.0
- php: 8.1
SYMFONY_REQUIRE: 6.3.*
SYMFONY_REQUIRE: 6.4.*
- php: 8.2
SYMFONY_REQUIRE: 7.0.*
SYMFONY_REQUIRE: 7.1.*
- php: 8.3
SYMFONY_REQUIRE: 7.1.*
stability: dev

steps:
Expand Down
18 changes: 9 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
}
],
"require": {
"php": "^7.2 || ^8.0",
"symfony/framework-bundle": "^5.4 || ^6.3 || ^7.0",
"symfony/twig-bundle": "^5.4 || ^6.3 || ^7.0",
"php": "^7.4 || ^8.0",
"symfony/framework-bundle": "^5.4 || ^6.4 || ^7.1",
"symfony/twig-bundle": "^5.4 || ^6.4 || ^7.1",
"twig/twig": "^1.35 || ^2.4.4 || ^3.0"
},
"require-dev": {
Expand All @@ -23,12 +23,12 @@
"phpstan/phpstan": "^1.5",
"phpstan/phpstan-symfony": "^1.0",
"phpunit/phpunit": "^8.5 || ^9.5",
"symfony/browser-kit": "^5.4 || ^6.3 || ^7.0",
"symfony/css-selector": "^5.4 || ^6.3 || ^7.0",
"symfony/expression-language": "^5.4 || ^6.3 || ^7.0",
"symfony/phpunit-bridge": "^6.3",
"symfony/security-bundle": "^5.4 || ^6.3 || ^7.0",
"symfony/yaml": "5.4 || ^6.3 || ^7.0"
"symfony/browser-kit": "^5.4 || ^6.4 || ^7.1",
"symfony/css-selector": "^5.4 || ^6.4 || ^7.1",
"symfony/expression-language": "^5.4 || ^6.4 || ^7.1",
"symfony/phpunit-bridge": "^7.1",
"symfony/security-bundle": "^5.4 || ^6.4 || ^7.1",
"symfony/yaml": "5.4 || ^6.4 || ^7.1"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 6089f62

Please sign in to comment.