Skip to content

Commit 7db75bd

Browse files
Update dependency wyrihaximus/makefiles to ^0.10.6
1 parent 566ab94 commit 7db75bd

8 files changed

Lines changed: 118 additions & 47 deletions

File tree

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
*.webp binary
1212
*.bmp binary
1313
*.ttf binary
14+
*.blp binary
15+
*.db2 binary
1416

1517
# Ignoring files for distribution archieves
1618
.github/ export-ignore

.github/renovate.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{
2-
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3-
"extends": [
4-
"github>WyriHaximus/renovate-config:php-package"
5-
]
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"github>WyriHaximus/renovate-config:php-package"
5+
],
6+
"constraints": {
7+
"php": "8.4.x",
8+
"composer": "2.x"
9+
}
610
}

Makefile

Lines changed: 85 additions & 30 deletions
Large diffs are not rendered by default.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
},
2424
"require-dev": {
2525
"react-parallel/runtime": "^3.1.0",
26-
"wyrihaximus/makefiles": "^0.7.16"
26+
"wyrihaximus/makefiles": "^0.10.6"
2727
},
2828
"autoload": {
2929
"psr-4": {

composer.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

etc/qa/infection.json5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"timeout": 120,
33
"source": {
44
"directories": [
5-
"src"
5+
"../../src"
66
]
77
},
88
"logs": {

etc/qa/phpunit.xml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="../../vendor/autoload.php" colors="true" xsi:noNamespaceSchemaLocation="../../vendor/phpunit/phpunit/phpunit.xsd" cacheDirectory="../../var/phpunit/cache">
2+
<phpunit
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
bootstrap="../../vendor/autoload.php"
5+
colors="true"
6+
xsi:noNamespaceSchemaLocation="../../vendor/phpunit/phpunit/phpunit.xsd"
7+
cacheDirectory="../../var/phpunit/cache"
8+
displayDetailsOnTestsThatTriggerDeprecations="true"
9+
displayDetailsOnTestsThatTriggerErrors="true"
10+
displayDetailsOnTestsThatTriggerNotices="true"
11+
displayDetailsOnTestsThatTriggerWarnings="true"
12+
displayDetailsOnPhpunitDeprecations="true"
13+
>
314
<testsuites>
415
<testsuite name="Test Suite">
516
<directory>../../tests/</directory>

src/AbstractPoolTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,6 @@ final public function killingPoolWhileRunningClosuresShouldNotYieldValidResult()
166166
$pool->kill();
167167
});
168168

169-
/** @phpstan-ignore-next-line */
170169
/** @phpstan-ignore staticMethod.alreadyNarrowedType */
171170
self::assertSame(123, $pool->run(static function (): int {
172171
/** @phpstan-ignore wyrihaximus.reactphp.blocking.function.sleep */

0 commit comments

Comments
 (0)