Skip to content

Commit 8edb8fd

Browse files
authored
drop symfony 4.4 support (#237)
* drop symfony 4.4 support
1 parent 1cb8446 commit 8edb8fd

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

composer.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,22 @@
66
"minimum-stability": "dev",
77
"require": {
88
"php": ">=7.2.5",
9-
"symfony/config": "^4.4 | ^5.0 | ^6.0",
10-
"symfony/dependency-injection": "^4.4 | ^5.0 | ^6.0",
9+
"ext-json": "*",
10+
"symfony/config": "^5.4 | ^6.0",
11+
"symfony/dependency-injection": "^5.4 | ^6.0",
1112
"symfony/deprecation-contracts": "^2.2 | ^3.0",
12-
"symfony/http-kernel": "^4.4 | ^5.0 | ^6.0"
13+
"symfony/http-kernel": "^5.4 | ^6.0"
1314
},
1415
"require-dev": {
1516
"doctrine/orm": "^2.7",
16-
"symfony/framework-bundle": "^4.4 | ^5.0 | ^6.0",
17-
"symfony/phpunit-bridge": "^5.0 | ^6.0",
17+
"symfony/framework-bundle": "^5.4 | ^6.0",
18+
"symfony/phpunit-bridge": "^5.4 | ^6.0",
1819
"vimeo/psalm": "^4.3",
1920
"doctrine/doctrine-bundle": "^2.0.3"
2021
},
2122
"conflict": {
2223
"php": ">=8.1 <8.1.10",
23-
"doctrine/orm": "<2.7",
24-
"symfony/http-foundation": "<4.4",
25-
"symfony/framework-bundle": "<4.4"
24+
"doctrine/orm": "<2.7"
2625
},
2726
"autoload": {
2827
"psr-4": {

src/Command/ResetPasswordRemoveExpiredCommand.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ protected function configure(): void
3939

4040
/**
4141
* {@inheritdoc}
42-
*
43-
* @psalm-suppress InvalidReturnType
4442
*/
4543
protected function execute(InputInterface $input, OutputInterface $output): int
4644
{

tests/ResetPasswordTestKernel.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ public function registerContainerConfiguration(LoaderInterface $loader): void
7676
'type' => 'service',
7777
'utf8' => true,
7878
],
79+
'http_method_override' => false,
7980
]
8081
);
8182

0 commit comments

Comments
 (0)