This repository was archived by the owner on Aug 21, 2026. It is now read-only.
Merge pull request #713 from mimmi20/dependabot/composer/development-… #2667
Annotations
8 warnings
|
Complete job
Node.js 20 is deprecated. The following actions target Node.js 20 but are being forced to run on Node.js 24: codecov/test-results-action@v1. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
Run mutation tests with infection/infection with PHPStan:
src/StreamFormatterFactory.php#L104
Escaped Mutant for Mutator "MethodCallRemoval":
@@ @@
$formatter->setMaxNormalizeDepth($maxNormalizeDepth);
$formatter->setMaxNormalizeItemCount($maxNormalizeItemCount);
- $formatter->setJsonPrettyPrint($prettyPrint);
+
return $formatter;
}
|
|
Run mutation tests with infection/infection with PHPStan:
src/StreamFormatterFactory.php#L53
Escaped Mutant for Mutator "FalseValue":
@@ @@
$allowInlineLineBreaks = false;
$maxNormalizeDepth = self::DEFAULT_NORMALIZER_DEPTH;
$maxNormalizeItemCount = self::DEFAULT_NORMALIZER_ITEM_COUNT;
- $prettyPrint = false;
+ $prettyPrint = true;
$includeStacktraces = false;
if (is_array($options)) {
|
|
Run mutation tests with infection/infection with PHPStan:
src/StreamFormatter.php#L385
Escaped Mutant for Mutator "TrueValue":
@@ @@
return (string) $data;
}
- return $this->toJson($data, true);
+ return $this->toJson($data, false);
}
/** @throws void */
|
|
Run mutation tests with infection/infection with PHPStan:
src/StreamFormatter.php#L382
Escaped Mutant for Mutator "ReturnRemoval":
@@ @@
}
if (is_scalar($data)) {
- return (string) $data;
+
}
return $this->toJson($data, true);
|
|
Run mutation tests with infection/infection with PHPStan:
src/StreamFormatter.php#L370
Escaped Mutant for Mutator "ReturnRemoval":
@@ @@
}
if ($data === null) {
- return 'null';
+
}
if ($data === true) {
|
|
Run mutation tests with infection/infection with PHPStan:
src/StreamFormatter.php#L366
Escaped Mutant for Mutator "ReturnRemoval":
@@ @@
private function convertToString(mixed $data): string
{
if (is_string($data)) {
- return $data;
+
}
if ($data === null) {
|
|
Upload test results to Codecov
This action is being deprecated in favor of 'codecov-action'.
Please update CI accordingly to use 'codecov-action@v5' with
'report_type: test_results'.
The 'codecov-action' should and can be run at least once for
coverage and once for test results
|
background
wait
wait-all
cancel
parallel
Loading