Skip to content

Commit

Permalink
chore(deps): require symfony 6.4 / 7.0+ (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
simPod authored Dec 1, 2023
1 parent a14ed00 commit e260296
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
"license": "MIT",
"require": {
"php": "^8.2",
"symfony/config": "^6.0",
"symfony/console": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/http-kernel": "^6.0",
"symfony/yaml": "^6.0",
"symfony/config": "^6.4 || ^7.0",
"symfony/console": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/yaml": "^6.4 || ^7.0",
"tracy/tracy": "^2.8"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion phpstan-baseline.neon
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
parameters:
ignoreErrors:
-
message: "#^Cannot call method integerNode\\(\\) on Symfony\\\\Component\\\\Config\\\\Definition\\\\Builder\\\\NodeParentInterface\\|null\\.$#"
message: "#^Call to an undefined method Symfony\\\\Component\\\\Config\\\\Definition\\\\Builder\\\\NodeParentInterface\\:\\:integerNode\\(\\)\\.$#"
count: 1
path: src/DependencyInjection/Configuration.php

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function testRenderTracy(): void
{
$kernel = $this->createMock(HttpKernelInterface::class);
$request = new Request();
$requestType = HttpKernelInterface::MASTER_REQUEST;
$requestType = HttpKernelInterface::MAIN_REQUEST;
$exception = new Exception('Foobar!');

$event = new ExceptionEvent($kernel, $request, $requestType, $exception);
Expand Down

0 comments on commit e260296

Please sign in to comment.