Skip to content

Commit b9d4b52

Browse files
committed
feat: add Symfony 8 constraint for future compatibility
Prepare composer.json for Symfony 8 support by adding ^8.0 constraint to symfony/finder, symfony/event-dispatcher, symfony/console, and symfony/var-dumper dependencies.
1 parent 21aad96 commit b9d4b52

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
],
2424
"require": {
2525
"php": "^7.4|^8",
26-
"symfony/finder": "^3.0|^4.0|^5.0|^6.0|^7.0",
27-
"symfony/event-dispatcher": "^3.0|^4.0|^5.0|^6.0|^7.0",
28-
"symfony/console": "^3.0|^4.0|^5.0|^6.0|^7.0",
26+
"symfony/finder": "^3.0|^4.0|^5.0|^6.0|^7.0|^8.0",
27+
"symfony/event-dispatcher": "^3.0|^4.0|^5.0|^6.0|^7.0|^8.0",
28+
"symfony/console": "^3.0|^4.0|^5.0|^6.0|^7.0|^8.0",
2929
"symfony/polyfill-php80": "^1.20",
3030
"nikic/php-parser": "~5",
3131
"webmozart/assert": "^1.9",
@@ -40,7 +40,7 @@
4040
"phpspec/prophecy-phpunit": "^2.3",
4141
"phpunit/phpunit": "^7.5|^9.0|^10.0",
4242
"roave/security-advisories": "dev-master",
43-
"symfony/var-dumper": "^3.0|^4.0|^5.0|^6.0|^7.0"
43+
"symfony/var-dumper": "^3.0|^4.0|^5.0|^6.0|^7.0|^8.0"
4444
},
4545
"autoload": {
4646
"psr-4": {

0 commit comments

Comments
 (0)