Skip to content

Commit 24e6cf7

Browse files
authored
Drop PHP 7 and fix compatibility with SF6 (#121)
* Drop PHP 7 and fix compatibility with SF6 * Fixed ci * Update PHP cs fixer * tryign to fix more CI issues * Update psalm baseline * Upgrade to larvel 9
1 parent ff970fb commit 24e6cf7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@
1010
}
1111
],
1212
"require": {
13+
"php": ">=8.0.5",
1314
"psr/http-server-handler": "^1.0",
1415
"react/http": "^1.6",
15-
"symfony/runtime": "^5.3 || ^6.0"
16+
"symfony/runtime": "^5.4 || ^6.0"
1617
},
1718
"require-dev": {
1819
"phpunit/phpunit": "^9.5"

tests/RunnerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function testRun(): void
1717
$handler = function () {};
1818
$loop = $this->createMock(LoopInterface::class);
1919
Loop::set($loop);
20-
$server = new HttpServer($handler); //final, cannot be mocked
20+
$server = new HttpServer($handler); // final, cannot be mocked
2121
$factory = $this->createMock(ServerFactory::class);
2222
$application = $this->createMock(RequestHandlerInterface::class);
2323

0 commit comments

Comments
 (0)