Skip to content

Commit ccb5c1f

Browse files
authored
Allow Symfony 7.0 and bump dependencies (#111)
* Allow Symfony 7.0 and bump dependencies * Fixed Phpstan * Fixed incompatible code with Symfony 7 * Configure security bundle because it is required * Disable security for Symfony integration test * Use access control to grant all app in symfony integration test * Configure roles for batch ui security in symfony integration test * Fixed checkstyle
1 parent c80a6ef commit ccb5c1f

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

composer.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
}
1212
],
1313
"require": {
14-
"php": "^8.0",
14+
"php": "^8.1",
1515
"composer-runtime-api": "^2.0",
16-
"symfony/config": "^5.0|^6.0",
17-
"symfony/console": "^5.0|^6.0",
18-
"symfony/dependency-injection": "^5.0|^6.0",
19-
"symfony/http-kernel": "^5.0|^6.0",
20-
"symfony/framework-bundle": "^5.0|^6.0",
16+
"symfony/config": "^6.4|^7.0",
17+
"symfony/console": "^6.4|^7.0",
18+
"symfony/dependency-injection": "^6.4|^7.0",
19+
"symfony/http-kernel": "^6.4|^7.0",
20+
"symfony/framework-bundle": "^6.4|^7.0",
2121
"yokai/batch": "^0.5.0"
2222
},
2323
"autoload": {
@@ -27,11 +27,11 @@
2727
},
2828
"require-dev": {
2929
"sonata-project/admin-bundle": "^4.0",
30-
"symfony/filesystem": "^5.0|^6.0",
31-
"symfony/form": "^5.0|^6.0",
32-
"symfony/security-bundle": "^5.0|^6.0",
33-
"symfony/translation": "^5.0|^6.0",
34-
"symfony/twig-bundle": "^5.0|^6.0",
30+
"symfony/filesystem": "^6.4|^7.0",
31+
"symfony/form": "^6.4|^7.0",
32+
"symfony/security-bundle": "^6.4|^7.0",
33+
"symfony/translation": "^6.4|^7.0",
34+
"symfony/twig-bundle": "^6.4|^7.0",
3535
"phpunit/phpunit": "^9.5"
3636
},
3737
"suggest": {

0 commit comments

Comments
 (0)