From 2ded999adf0256d1dbc43de6dc067259c846f544 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Wed, 28 Jan 2026 01:51:26 +0000 Subject: [PATCH] chore: bumps dependencies --- composer.json | 12 ++++++------ src/Result.php | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/composer.json b/composer.json index c4072f95..a53098c6 100644 --- a/composer.json +++ b/composer.json @@ -18,16 +18,16 @@ ], "require": { "php": "^8.1.0", - "brianium/paratest": "^7.3.1", - "nunomaduro/collision": "^7.11.0|^8.4.0", - "nunomaduro/termwind": "^1.16.0|^2.1.0", + "brianium/paratest": "^7.4.9", + "nunomaduro/collision": "^7.11.0|^8.5.0", + "nunomaduro/termwind": "^1.16.0|^2.3.3", "pestphp/pest-plugin": "^2.1.1", "pestphp/pest-plugin-arch": "^2.7.0", - "phpunit/phpunit": "^10.5.36" + "phpunit/phpunit": "^10.5.63" }, "conflict": { "filp/whoops": "<2.16.0", - "phpunit/phpunit": ">10.5.36", + "phpunit/phpunit": ">10.5.63", "sebastian/exporter": "<5.1.0", "webmozart/assert": "<1.11.0" }, @@ -54,7 +54,7 @@ "require-dev": { "pestphp/pest-dev-tools": "^2.17.0", "pestphp/pest-plugin-type-coverage": "^2.8.7", - "symfony/process": "^6.4.0|^7.1.5" + "symfony/process": "^6.4.0|^7.4.4" }, "minimum-stability": "dev", "prefer-stable": true, diff --git a/src/Result.php b/src/Result.php index 98e9e8b6..233ffa2d 100644 --- a/src/Result.php +++ b/src/Result.php @@ -40,7 +40,7 @@ final class Result */ public static function exitCode(Configuration $configuration, TestResult $result): int { - if ($result->wasSuccessfulIgnoringPhpunitWarnings()) { + if ($result->wasSuccessful()) { if ($configuration->failOnWarning()) { $warnings = $result->numberOfTestsWithTestTriggeredPhpunitWarningEvents() + count($result->warnings()) @@ -60,7 +60,7 @@ final class Result return self::FAILURE_EXIT; } - if ($result->wasSuccessfulIgnoringPhpunitWarnings()) { + if ($result->wasSuccessful()) { if ($configuration->failOnRisky() && $result->hasTestConsideredRiskyEvents()) { $returnCode = self::FAILURE_EXIT; }