Skip to content

Commit 7af57f9

Browse files
Merge pull request #1 from SBSEDV/symfony8
Allow Symfony 8
2 parents 810c50b + 991fa7f commit 7af57f9

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/phpstan.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
php_version: ["8.2", "8.3", "8.4"]
16+
php_version: ["8.2", "8.3", "8.4", "8.5"]
1717

1818
name: PHPStan with PHP ${{ matrix.php_version }}
1919

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616
},
1717
"require": {
1818
"php": "^8.2",
19-
"symfony/framework-bundle": "^7.0",
19+
"symfony/framework-bundle": "^7.0 || ^8.0",
2020
"twig/twig": "^3.3"
2121
},
2222
"require-dev": {
2323
"friendsofphp/php-cs-fixer": "^3.89",
2424
"phpstan/extension-installer": "^1.4",
2525
"phpstan/phpstan": "^2.1",
2626
"phpstan/phpstan-symfony": "^2.0",
27-
"symfony/translation": "^7.0"
27+
"symfony/translation": "^7.0 || ^8.0"
2828
},
2929
"extra": {
3030
"branch-alias": {

config/definitions/event_listener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Symfony\Component\Config\Definition\Configurator;
44

55
return function (DefinitionConfigurator $definition): void {
6-
$definition // @phpstan-ignore method.notFound
6+
$definition
77
->rootNode()
88
->children()
99
->arrayNode('timezone_listener')

config/definitions/other.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Symfony\Component\Config\Definition\Configurator;
44

55
return function (DefinitionConfigurator $definition): void {
6-
$definition // @phpstan-ignore method.notFound
6+
$definition
77
->rootNode()
88
->children()
99
->arrayNode('cookie_config_extension')

0 commit comments

Comments
 (0)