Skip to content

Commit d28a49c

Browse files
authored
Allow Symfony 8 (#24)
1 parent 35f9c70 commit d28a49c

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
"php": ">= 8.2",
1414
"composer-runtime-api": "^2.1",
1515
"fortawesome/font-awesome": "^6.6",
16-
"symfony/dependency-injection": "^7.2",
16+
"symfony/dependency-injection": "^7.2 || ^8",
1717
"symfony/deprecation-contracts": "^2.5 || ^3",
18-
"symfony/filesystem": "^7.2",
19-
"symfony/http-kernel": "^7.2",
18+
"symfony/filesystem": "^7.2 || ^8",
19+
"symfony/http-kernel": "^7.2 || ^8",
2020
"twig/twig": "^3.9"
2121
},
2222
"require-dev": {
@@ -27,8 +27,8 @@
2727
"phpstan/phpstan-phpunit": "^2",
2828
"phpstan/phpstan-strict-rules": "^2",
2929
"phpunit/phpunit": "^11.5.15",
30-
"symfony/framework-bundle": "^7.2",
31-
"symfony/twig-bundle": "^7.2"
30+
"symfony/framework-bundle": "^7.2 || ^8",
31+
"symfony/twig-bundle": "^7.2 || ^8"
3232
},
3333
"config": {
3434
"allow-plugins": {

tests/TwigAwesomeTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ public function registerContainerConfiguration(LoaderInterface $loader): void
5151
$container->loadFromExtension('framework', [
5252
'secret' => 'foo',
5353
'http_method_override' => false,
54-
'annotations' => ['enabled' => false],
5554
]);
5655

5756
$twigConfig = [

0 commit comments

Comments
 (0)