Skip to content

Commit 7d52650

Browse files
committed
fix(frankenphp-symfony): add Symfony 8 to composer constraints
PR php-runtime#185 ("Update Symfony package versions to include 8.0") updated the Symfony constraints for all other packages in this mono-repo but missed frankenphp-symfony — only the PHPUnit dev-dependency was bumped. The runtime uses stable Symfony interfaces (HttpKernelInterface, TerminableInterface, RunnerInterface, SymfonyRuntime) that are unchanged in Symfony 8.0, so no code changes are required.
1 parent 182563a commit 7d52650

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/frankenphp-symfony/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
],
1212
"require": {
1313
"php": ">=8.1",
14-
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
15-
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
16-
"symfony/runtime": "^5.4 || ^6.0 || ^7.0"
14+
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0 || ^8.0",
15+
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0 || ^8.0",
16+
"symfony/runtime": "^5.4 || ^6.0 || ^7.0 || ^8.0"
1717
},
1818
"require-dev": {
1919
"phpunit/phpunit": "^10.5.58"

0 commit comments

Comments
 (0)