Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ jobs:
php-version: '8.4'
composer-options: '--prefer-stable'
symfony-version: '^8.0'
-
php-version: '8.4'
composer-options: '--prefer-stable'
symfony-version: '^7.4'

steps:
-
Expand Down
2 changes: 1 addition & 1 deletion UPGRADE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ UPGRADE

## Upgrade from 2.x to 3.0

* Support for Symfony 6 and 7 was removed, PHP 8.4 and Symfony 8.0 is now the minimum required version.
* Support for Symfony 6 was removed, PHP 8.4 and Symfony 7.4 is now the minimum required version.

* The constraints constructor was changed to better support the new Symfony validator.

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
],
"require": {
"php": ">=8.4",
"symfony/config": "^8.0",
"symfony/config": "^7.4 || ^8.0",
"symfony/polyfill-mbstring": "^1.5.0",
"symfony/translation": "^8.0",
"symfony/validator": "^8.0"
"symfony/translation": "^7.4 || ^8.0",
"symfony/validator": "^7.4 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^12.4",
"symfony/phpunit-bridge": "^8.0",
"symfony/phpunit-bridge": "^7.4 || ^8.0",
"rollerscapes/standards": "^1.0"
},
"minimum-stability": "dev",
Expand Down