diff --git a/composer.json b/composer.json index c5d53bcb..aa563078 100644 --- a/composer.json +++ b/composer.json @@ -40,25 +40,25 @@ "ext-simplexml": "*", "fidry/cpu-core-counter": "^0.4.1 || ^0.5.1", "jean85/pretty-package-versions": "^2.0.5", - "phpunit/php-code-coverage": "^10.1.0", + "phpunit/php-code-coverage": "^10.1.1", "phpunit/php-file-iterator": "^4.0.1", "phpunit/php-timer": "^6.0", - "phpunit/phpunit": "^10.1.0", + "phpunit/phpunit": "^10.1.2", "sebastian/environment": "^6.0.1", - "symfony/console": "^6.2.8", - "symfony/process": "^6.2.8" + "symfony/console": "^6.2.10", + "symfony/process": "^6.2.10" }, "require-dev": { "ext-pcov": "*", "ext-posix": "*", - "doctrine/coding-standard": "^11.1.0", - "infection/infection": "^0.26.19", - "phpstan/phpstan": "^1.10.13", + "doctrine/coding-standard": "^12.0.0", + "infection/infection": "^0.26.21", + "phpstan/phpstan": "^1.10.14", "phpstan/phpstan-deprecation-rules": "^1.1.3", "phpstan/phpstan-phpunit": "^1.3.11", "phpstan/phpstan-strict-rules": "^1.5.1", "squizlabs/php_codesniffer": "^3.7.2", - "symfony/filesystem": "^6.2.7" + "symfony/filesystem": "^6.2.10" }, "autoload": { "psr-4": { diff --git a/test/Unit/WrapperRunner/WrapperRunnerTest.php b/test/Unit/WrapperRunner/WrapperRunnerTest.php index 53a9046e..2edd9482 100644 --- a/test/Unit/WrapperRunner/WrapperRunnerTest.php +++ b/test/Unit/WrapperRunner/WrapperRunnerTest.php @@ -240,7 +240,7 @@ public function testTeamcityOutput(): void $result = $this->runRunner(); - self::assertSame(35, preg_match_all('/^##teamcity/m', $result->output)); + self::assertSame(36, preg_match_all('/^##teamcity/m', $result->output)); } public function testExitCodesPathWithoutTests(): void @@ -459,7 +459,7 @@ public function testTeamcityLog(): void $content = file_get_contents($outputPath); self::assertNotFalse($content); - self::assertSame(35, preg_match_all('/^##teamcity/m', $content)); + self::assertSame(36, preg_match_all('/^##teamcity/m', $content)); } public function testRunningFewerTestsThanTheWorkersIsPossible(): void