Skip to content

composer(deps-dev): bump the minor-patch-dependencies group with 3 updates #1225

composer(deps-dev): bump the minor-patch-dependencies group with 3 updates

composer(deps-dev): bump the minor-patch-dependencies group with 3 updates #1225

Triggered via pull request March 15, 2024 03:39
Status Success
Total duration 5m 11s
Artifacts

continuous-integration.yml

on: pull_request
Matrix: Validate Project / Check composer dependencies with composer-dependency-analyser
Matrix: Validate Project / Check composer dependencies with composer-unused
Matrix: Validate Project / Check with editorconfig-checker
Matrix: Validate Project / Lint PHP
Matrix: Validate Project / Validate markdown files
Matrix: Validate Project / Linting with overtrue/phplint
Matrix: Validate Project / Validate composer
Matrix: Validate Project / Validate yaml
Validate Project  /  Lint & Validate Status
0s
Validate Project / Lint & Validate Status
Matrix: Install Project / Install dependencies
Install Project  /  Install Status
0s
Install Project / Install Status
Matrix: Project Analysis / Check Coding Standards with PHP-CS-Fixer
Matrix: Project Analysis / Check Coding Standards with PHPCS
Matrix: Project Analysis / Check Rules with PHPMD
Matrix: Project Analysis / Checks with Rector
Matrix: Project Analysis / Static Code Analysis with PHPStan
Project Analysis  /  Status Analytics
0s
Project Analysis / Status Analytics
Matrix: Code Coverage with PHPUnit
Matrix: UnitTests & Code Coverage
finish-code-coverage
5s
finish-code-coverage
Unit & Integration Tests Status
0s
Unit & Integration Tests Status
Fit to window
Zoom out
Zoom in

Annotations

4 errors and 4 warnings
Validate Project / Check with editorconfig-checker (ubuntu-22.04, 8.1, lowest)
Process completed with exit code 1.
Validate Project / Check with editorconfig-checker (ubuntu-22.04, 8.1, highest)
Process completed with exit code 1.
Code Coverage with PHPUnit (ubuntu-22.04, 8.1, lowest)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: paambaati/[email protected]. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
Code Coverage with PHPUnit (ubuntu-22.04, 8.1, lowest): src/StreamFormatter.php#L359
Escaped Mutant for Mutator "TrueValue": --- Original +++ New @@ @@ if (is_scalar($data)) { return (string) $data; } - return $this->toJson($data, true); + return $this->toJson($data, false); } /** @throws void */ private function replaceNewlines(string $str) : string
Code Coverage with PHPUnit (ubuntu-22.04, 8.1, lowest): src/StreamFormatterFactory.php#L53
Escaped Mutant for Mutator "FalseValue": --- Original +++ New @@ @@ $allowInlineLineBreaks = false; $maxNormalizeDepth = self::DEFAULT_NORMALIZER_DEPTH; $maxNormalizeItemCount = self::DEFAULT_NORMALIZER_ITEM_COUNT; - $prettyPrint = false; + $prettyPrint = true; $includeStacktraces = false; if (is_array($options)) { if (array_key_exists('format', $options)) {
Code Coverage with PHPUnit (ubuntu-22.04, 8.1, lowest): src/StreamFormatterFactory.php#L112
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ } $formatter->setMaxNormalizeDepth($maxNormalizeDepth); $formatter->setMaxNormalizeItemCount($maxNormalizeItemCount); - $formatter->setJsonPrettyPrint($prettyPrint); + return $formatter; } }