Skip to content

Commit 7b23a80

Browse files
committed
Fixing the CI
1 parent 6af65ad commit 7b23a80

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

composer.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,15 @@
1212
],
1313
"require": {
1414
"php": ">=8.1",
15-
"symfony/form": "^6.3"
15+
"symfony/form": "^5.4|^6.3|^7.0"
1616
},
1717
"require-dev": {
18-
"symfony/framework-bundle": "^6.3",
19-
"symfony/phpunit-bridge": "^6.3",
20-
"phpstan/phpstan": "1.11.x-dev",
21-
"zenstruck/browser": "1.x-dev",
22-
"symfony/twig-bundle": "7.0.x-dev"
18+
"symfony/framework-bundle": "^6.3|^7.0",
19+
"symfony/phpunit-bridge": "^5.4|^6.3|^7.0",
20+
"phpstan/phpstan": "^1.11",
21+
"zenstruck/browser": "^1.4",
22+
"symfony/twig-bundle": "^6.3|^7.0",
23+
"twig/twig": "^2.15|^3.0"
2324
},
2425
"minimum-stability": "dev",
2526
"autoload": {

tests/fixtures/DynamicFormsTestKernel.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ protected function configureContainer(ContainerConfigurator $container): void
5959
'secret' => 'foo000',
6060
'http_method_override' => false,
6161
'test' => true,
62+
'handle_all_throwables' => true,
63+
'php_errors' => [
64+
'log' => true,
65+
],
6266
]);
6367

6468
$container->extension('twig', [

0 commit comments

Comments
 (0)