Lock file maintenance #608
continuous-integration.yml
on: push
ci
/
Generate job matrix
6s
Matrix: ci / QA Checks
Annotations
27 warnings
ci / Generate job matrix
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ci / QA Checks (README Linting [8.1, locked], ubuntu-latest, laminas/laminas-continuous-integration-ac...
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ci / QA Checks (PHPUnit [8.4, latest], ubuntu-latest, laminas/laminas-continuous-integration-action@v1...
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ci / QA Checks (PHPCodeSniffer [8.1, locked], ubuntu-latest, laminas/laminas-continuous-integration-ac...
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ci / QA Checks (PHPUnit [8.3, latest], ubuntu-latest, laminas/laminas-continuous-integration-action@v1...
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ci / QA Checks (PHPUnit [8.4, lowest], ubuntu-latest, laminas/laminas-continuous-integration-action@v1...
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ci / QA Checks (PHPUnit [8.2, latest], ubuntu-latest, laminas/laminas-continuous-integration-action@v1...
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ci / QA Checks (PHPUnit [8.2, lowest], ubuntu-latest, laminas/laminas-continuous-integration-action@v1...
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ci / QA Checks (PHPUnit [8.1, locked], ubuntu-latest, laminas/laminas-continuous-integration-action@v1...
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ci / QA Checks (Documentation Linting [8.1, locked], ubuntu-latest, laminas/laminas-continuous-integra...
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ci / QA Checks (Psalm [8.1, locked], ubuntu-latest, laminas/laminas-continuous-integration-action@v1, ...
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ci / QA Checks (Composer Require Checker [8.1, locked], ubuntu-latest, laminas/laminas-continuous-inte...
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ci / QA Checks (PHPUnit [8.1, latest], ubuntu-latest, laminas/laminas-continuous-integration-action@v1...
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ci / QA Checks (PHPUnit [8.1, lowest], ubuntu-latest, laminas/laminas-continuous-integration-action@v1...
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ci / QA Checks (Infection [8.1, locked], ubuntu-latest, laminas/laminas-continuous-integration-action@...
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ci / QA Checks (Infection [8.1, locked], ubuntu-latest, laminas/laminas-continuous-integration-action@...:
src/Escaper.php#L140
Escaped Mutant for Mutator "Throw_":
--- Original
+++ New
@@ @@
{
if ($encoding !== null) {
if ($encoding === '') {
- throw new Exception\InvalidArgumentException(static::class . ' constructor parameter does not allow a blank value');
+ new Exception\InvalidArgumentException(static::class . ' constructor parameter does not allow a blank value');
}
$encoding = strtolower($encoding);
if (!in_array($encoding, $this->supportedEncodings)) {
|
ci / QA Checks (Infection [8.1, locked], ubuntu-latest, laminas/laminas-continuous-integration-action@...:
src/Escaper.php#L141
Escaped Mutant for Mutator "Concat":
--- Original
+++ New
@@ @@
{
if ($encoding !== null) {
if ($encoding === '') {
- throw new Exception\InvalidArgumentException(static::class . ' constructor parameter does not allow a blank value');
+ throw new Exception\InvalidArgumentException(' constructor parameter does not allow a blank value' . static::class);
}
$encoding = strtolower($encoding);
if (!in_array($encoding, $this->supportedEncodings)) {
|
ci / QA Checks (Infection [8.1, locked], ubuntu-latest, laminas/laminas-continuous-integration-action@...:
src/Escaper.php#L141
Escaped Mutant for Mutator "ConcatOperandRemoval":
--- Original
+++ New
@@ @@
{
if ($encoding !== null) {
if ($encoding === '') {
- throw new Exception\InvalidArgumentException(static::class . ' constructor parameter does not allow a blank value');
+ throw new Exception\InvalidArgumentException(' constructor parameter does not allow a blank value');
}
$encoding = strtolower($encoding);
if (!in_array($encoding, $this->supportedEncodings)) {
|
ci / QA Checks (Infection [8.1, locked], ubuntu-latest, laminas/laminas-continuous-integration-action@...:
src/Escaper.php#L141
Escaped Mutant for Mutator "ConcatOperandRemoval":
--- Original
+++ New
@@ @@
{
if ($encoding !== null) {
if ($encoding === '') {
- throw new Exception\InvalidArgumentException(static::class . ' constructor parameter does not allow a blank value');
+ throw new Exception\InvalidArgumentException(static::class);
}
$encoding = strtolower($encoding);
if (!in_array($encoding, $this->supportedEncodings)) {
|
ci / QA Checks (Infection [8.1, locked], ubuntu-latest, laminas/laminas-continuous-integration-action@...:
src/Escaper.php#L148
Escaped Mutant for Mutator "Concat":
--- Original
+++ New
@@ @@
}
$encoding = strtolower($encoding);
if (!in_array($encoding, $this->supportedEncodings)) {
- throw new Exception\InvalidArgumentException('Value of \'' . $encoding . '\' passed to ' . static::class . ' constructor parameter is invalid. Provide an encoding supported by htmlspecialchars()');
+ throw new Exception\InvalidArgumentException($encoding . 'Value of \'' . '\' passed to ' . static::class . ' constructor parameter is invalid. Provide an encoding supported by htmlspecialchars()');
}
$this->encoding = $encoding;
}
|
ci / QA Checks (Infection [8.1, locked], ubuntu-latest, laminas/laminas-continuous-integration-action@...:
src/Escaper.php#L148
Escaped Mutant for Mutator "ConcatOperandRemoval":
--- Original
+++ New
@@ @@
}
$encoding = strtolower($encoding);
if (!in_array($encoding, $this->supportedEncodings)) {
- throw new Exception\InvalidArgumentException('Value of \'' . $encoding . '\' passed to ' . static::class . ' constructor parameter is invalid. Provide an encoding supported by htmlspecialchars()');
+ throw new Exception\InvalidArgumentException($encoding . '\' passed to ' . static::class . ' constructor parameter is invalid. Provide an encoding supported by htmlspecialchars()');
}
$this->encoding = $encoding;
}
|
ci / QA Checks (Infection [8.1, locked], ubuntu-latest, laminas/laminas-continuous-integration-action@...:
src/Escaper.php#L148
Escaped Mutant for Mutator "ConcatOperandRemoval":
--- Original
+++ New
@@ @@
}
$encoding = strtolower($encoding);
if (!in_array($encoding, $this->supportedEncodings)) {
- throw new Exception\InvalidArgumentException('Value of \'' . $encoding . '\' passed to ' . static::class . ' constructor parameter is invalid. Provide an encoding supported by htmlspecialchars()');
+ throw new Exception\InvalidArgumentException('Value of \'' . '\' passed to ' . static::class . ' constructor parameter is invalid. Provide an encoding supported by htmlspecialchars()');
}
$this->encoding = $encoding;
}
|
ci / QA Checks (Infection [8.1, locked], ubuntu-latest, laminas/laminas-continuous-integration-action@...:
src/Escaper.php#L148
Escaped Mutant for Mutator "Concat":
--- Original
+++ New
@@ @@
}
$encoding = strtolower($encoding);
if (!in_array($encoding, $this->supportedEncodings)) {
- throw new Exception\InvalidArgumentException('Value of \'' . $encoding . '\' passed to ' . static::class . ' constructor parameter is invalid. Provide an encoding supported by htmlspecialchars()');
+ throw new Exception\InvalidArgumentException('Value of \'' . '\' passed to ' . $encoding . static::class . ' constructor parameter is invalid. Provide an encoding supported by htmlspecialchars()');
}
$this->encoding = $encoding;
}
|
ci / QA Checks (Infection [8.1, locked], ubuntu-latest, laminas/laminas-continuous-integration-action@...:
src/Escaper.php#L148
Escaped Mutant for Mutator "ConcatOperandRemoval":
--- Original
+++ New
@@ @@
}
$encoding = strtolower($encoding);
if (!in_array($encoding, $this->supportedEncodings)) {
- throw new Exception\InvalidArgumentException('Value of \'' . $encoding . '\' passed to ' . static::class . ' constructor parameter is invalid. Provide an encoding supported by htmlspecialchars()');
+ throw new Exception\InvalidArgumentException('Value of \'' . $encoding . static::class . ' constructor parameter is invalid. Provide an encoding supported by htmlspecialchars()');
}
$this->encoding = $encoding;
}
|
ci / QA Checks (Infection [8.1, locked], ubuntu-latest, laminas/laminas-continuous-integration-action@...:
src/Escaper.php#L148
Escaped Mutant for Mutator "Concat":
--- Original
+++ New
@@ @@
}
$encoding = strtolower($encoding);
if (!in_array($encoding, $this->supportedEncodings)) {
- throw new Exception\InvalidArgumentException('Value of \'' . $encoding . '\' passed to ' . static::class . ' constructor parameter is invalid. Provide an encoding supported by htmlspecialchars()');
+ throw new Exception\InvalidArgumentException('Value of \'' . $encoding . static::class . '\' passed to ' . ' constructor parameter is invalid. Provide an encoding supported by htmlspecialchars()');
}
$this->encoding = $encoding;
}
|
ci / QA Checks (PHPUnit [8.3, lowest], ubuntu-latest, laminas/laminas-continuous-integration-action@v1...
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
ci / QA Checks (MkDocs Linting [8.1, locked], ubuntu-latest, laminas/laminas-continuous-integration-ac...
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|