Skip to content

Commit 3d21a03

Browse files
committed
test GH actions changes
1 parent 5f778cb commit 3d21a03

File tree

3 files changed

+14
-16
lines changed

3 files changed

+14
-16
lines changed

.github/workflows/test.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ jobs:
3030
strategy:
3131
matrix:
3232
php-version:
33-
- '8.1'
3433
- '8.2'
3534
- '8.3'
3635
- '8.4'
@@ -39,7 +38,7 @@ jobs:
3938
symfony-require: ['']
4039
variant: [normal]
4140
include:
42-
- php-version: '8.1'
41+
- php-version: '8.2'
4342
dependencies: lowest
4443
allowed-to-fail: false
4544
variant: normal
@@ -52,12 +51,12 @@ jobs:
5251
dependencies: highest
5352
allowed-to-fail: false
5453
symfony-require: 7.1.*
55-
variant: symfony/symfony:"7.1.*"
54+
variant: symfony/symfony:"7.3.*"
5655
- php-version: '8.4'
5756
dependencies: highest
5857
allowed-to-fail: false
59-
symfony-require: 7.2.*
60-
variant: symfony/symfony:"7.2.*"
58+
symfony-require: 7.4.*
59+
variant: symfony/symfony:"7.4.*"
6160

6261
steps:
6362
- name: Checkout

composer.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
],
2222
"homepage": "https://docs.sonata-project.org/projects/twig-extensions",
2323
"require": {
24-
"php": "^8.1",
25-
"symfony/config": "^6.4 || ^7.1",
26-
"symfony/twig-bridge": "^6.4 || ^7.1",
24+
"php": "^8.2",
25+
"symfony/config": "^6.4 || ^7.3",
26+
"symfony/twig-bridge": "^6.4 || ^7.3",
2727
"twig/twig": "^3.13"
2828
},
2929
"require-dev": {
@@ -39,13 +39,13 @@
3939
"psalm/plugin-phpunit": "^0.18 || ^0.19",
4040
"psalm/plugin-symfony": "^5.0",
4141
"rector/rector": "^1.1 || ^2.0",
42-
"symfony/browser-kit": "^6.4 || ^7.1",
43-
"symfony/dependency-injection": "^6.4 || ^7.1",
44-
"symfony/framework-bundle": "^6.4 || ^7.1",
45-
"symfony/http-foundation": "^6.4 || ^7.1",
46-
"symfony/http-kernel": "^6.4 || ^7.1",
47-
"symfony/translation": "^6.4 || ^7.1",
48-
"symfony/twig-bundle": "^6.4 || ^7.1",
42+
"symfony/browser-kit": "^6.4 || ^7.3",
43+
"symfony/dependency-injection": "^6.4 || ^7.3",
44+
"symfony/framework-bundle": "^6.4 || ^7.3",
45+
"symfony/http-foundation": "^6.4 || ^7.3",
46+
"symfony/http-kernel": "^6.4 || ^7.3",
47+
"symfony/translation": "^6.4 || ^7.3",
48+
"symfony/twig-bundle": "^6.4 || ^7.3",
4949
"vimeo/psalm": "^5.0 || ^6.10"
5050
},
5151
"minimum-stability": "dev",

tests/App/AppKernel.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ protected function configureContainer(ContainerBuilder $containerBuilder, Loader
7373

7474
$containerBuilder->loadFromExtension('twig', [
7575
'strict_variables' => '%kernel.debug%',
76-
'exception_controller' => null,
7776
'paths' => ['%kernel.project_dir%/templates'],
7877
]);
7978
}

0 commit comments

Comments
 (0)