composer(deps-dev): bump the minor-patch-dependencies group with 3 updates #1063
continuous-integration.yml
on: pull_request
Matrix: Validate Project / Check composer dependencies
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
Matrix: Install Project / Install dependencies
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
Matrix: UnitTests & Code Coverage / Code Coverage with PHPUnit
Matrix: UnitTests & Code Coverage / UnitTests with PHPUnit
Matrix: UnitTests & Code Coverage / UnitTests with stryker
Matrix: UnitTests & Code Coverage / UnitTests with vitest
UnitTests & Code Coverage
/
Unit & Integration Tests Status
0s
Annotations
1 warning
UnitTests & Code Coverage / Code Coverage with PHPUnit (ubuntu-22.04, 8.1, lowest):
src/IosBuild.php#L65
Escaped Mutant for Mutator "LessThan":
--- Original
+++ New
@@ @@
if ($matchCode['primaryCode'] . $matchCode['secondaryCode'] !== $matchNeedle['primaryCode'] . $matchNeedle['secondaryCode']) {
continue;
}
- if ($matchNeedle['buildCode'] < $matchCode['buildCode']) {
+ if ($matchNeedle['buildCode'] <= $matchCode['buildCode']) {
continue;
}
$candidate[$matchCode['buildCode']] = $versions[$key];
|