From 4276c2baeb182b08cd7b8cc31ad1f9cba135507a Mon Sep 17 00:00:00 2001 From: lubiana Date: Thu, 29 Aug 2024 15:39:01 +0200 Subject: [PATCH 1/2] reenable comtroller command test --- tests/commands/ControllerCommandTest.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/commands/ControllerCommandTest.php b/tests/commands/ControllerCommandTest.php index c333b755..82fb0c1c 100644 --- a/tests/commands/ControllerCommandTest.php +++ b/tests/commands/ControllerCommandTest.php @@ -68,8 +68,6 @@ public function testControllerAlreadyExists() public function testCreateController() { - - $this->markTestIncomplete('does not work on php > 8.0'); $app = $this->newApp('test', '0.0.1'); $app->add(new ControllerCommand(['app_root' => 'tests/commands/'])); $app->handle(['runway', 'make:controller', 'Test']); From 06fa9e5e515fdc16aa80c45693e63f220aa39617 Mon Sep 17 00:00:00 2001 From: lubiana Date: Thu, 29 Aug 2024 15:56:30 +0200 Subject: [PATCH 2/2] allow newer runway version in composer.json --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 6fec7c52..23b6b9ee 100644 --- a/composer.json +++ b/composer.json @@ -41,7 +41,7 @@ }, "require-dev": { "ext-pdo_sqlite": "*", - "flightphp/runway": "^0.2.3", + "flightphp/runway": "^0.2.3 || ^1.0", "league/container": "^4.2", "level-2/dice": "^4.0", "phpstan/extension-installer": "^1.3",