diff --git a/.github/workflows/build-assets.yml b/.github/workflows/build-assets.yml index 9230934e..a248a125 100644 --- a/.github/workflows/build-assets.yml +++ b/.github/workflows/build-assets.yml @@ -80,7 +80,7 @@ jobs: - ubuntu-24.04-arm - macos-15-intel - macos-26 -# - windows-2025 - disabled for now, seems broken + - windows-2022 permissions: contents: read # id-token:write is required for build provenance attestation. diff --git a/composer.json b/composer.json index 67ffe2d1..816e2649 100644 --- a/composer.json +++ b/composer.json @@ -46,8 +46,8 @@ "behat/behat": "^3.29.0", "bnf/phpstan-psr-container": "^1.1", "doctrine/coding-standard": "^14.0.0", - "phpstan/phpstan": "^2.2.3", - "phpstan/phpstan-phpunit": "^2.0.17", + "phpstan/phpstan": "^2.2.5", + "phpstan/phpstan-phpunit": "^2.0.18", "phpstan/phpstan-webmozart-assert": "^2.0", "phpunit/phpunit": "^10.5.63", "thecodingmachine/phpstan-safe-rule": "^1.4.7" diff --git a/composer.lock b/composer.lock index 920b73ae..a77b258b 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "215287579a594a45dc76ef962e1414c8", + "content-hash": "1698ceeafd2ca389527647c5bf084d70", "packages": [ { "name": "composer/ca-bundle", @@ -3228,20 +3228,19 @@ }, { "name": "nikic/php-parser", - "version": "v5.7.0", + "version": "v5.8.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82" + "reference": "044a6a392ff8ad0d61f14370a5fbbd0a0107152f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82", - "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/044a6a392ff8ad0d61f14370a5fbbd0a0107152f", + "reference": "044a6a392ff8ad0d61f14370a5fbbd0a0107152f", "shasum": "" }, "require": { - "ext-ctype": "*", "ext-json": "*", "ext-tokenizer": "*", "php": ">=7.4" @@ -3280,9 +3279,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0" + "source": "https://github.com/nikic/PHP-Parser/tree/v5.8.0" }, - "time": "2025-12-06T11:56:16+00:00" + "time": "2026-07-04T14:30:18+00:00" }, { "name": "phar-io/manifest", @@ -3451,11 +3450,11 @@ }, { "name": "phpstan/phpstan", - "version": "2.2.3", + "version": "2.2.5", "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/4048833dd47b377287818841877fb3087289509c", - "reference": "4048833dd47b377287818841877fb3087289509c", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/909c1e5fef7989ac0d0c1c5c42e32a5c4f6198a0", + "reference": "909c1e5fef7989ac0d0c1c5c42e32a5c4f6198a0", "shasum": "" }, "require": { @@ -3511,20 +3510,20 @@ "type": "github" } ], - "time": "2026-06-30T21:15:26+00:00" + "time": "2026-07-05T06:31:06+00:00" }, { "name": "phpstan/phpstan-phpunit", - "version": "2.0.17", + "version": "2.0.18", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan-phpunit.git", - "reference": "c2f977551f0736d60467b3d754b2e0cf4e337b3f" + "reference": "f5dc20ff8082d02339b60cab68ec3eb0d859fb30" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/c2f977551f0736d60467b3d754b2e0cf4e337b3f", - "reference": "c2f977551f0736d60467b3d754b2e0cf4e337b3f", + "url": "https://api.github.com/repos/phpstan/phpstan-phpunit/zipball/f5dc20ff8082d02339b60cab68ec3eb0d859fb30", + "reference": "f5dc20ff8082d02339b60cab68ec3eb0d859fb30", "shasum": "" }, "require": { @@ -3567,9 +3566,9 @@ ], "support": { "issues": "https://github.com/phpstan/phpstan-phpunit/issues", - "source": "https://github.com/phpstan/phpstan-phpunit/tree/2.0.17" + "source": "https://github.com/phpstan/phpstan-phpunit/tree/2.0.18" }, - "time": "2026-06-29T05:32:23+00:00" + "time": "2026-07-04T12:16:09+00:00" }, { "name": "phpstan/phpstan-webmozart-assert", diff --git a/src/Util/Process.php b/src/Util/Process.php index 4ddfbc5a..8bc0ebb3 100644 --- a/src/Util/Process.php +++ b/src/Util/Process.php @@ -71,7 +71,7 @@ public static function outputCallbackForVerbosity(IOInterface $io, int $minVerbo $type === SymfonyProcess::ERR ? '' : '', $outputMessage, $type === SymfonyProcess::ERR ? '' : '', - )); + ), false); }; }