From 108f17cf39eedb2403ceafb194870c1b05af4472 Mon Sep 17 00:00:00 2001 From: Andreas Gohr Date: Mon, 13 Nov 2023 16:53:47 +0100 Subject: [PATCH] updated devel dependencies --- _test/composer.lock | 43 ++++++++++++++++++++++--------------------- _test/rector.php | 2 +- 2 files changed, 23 insertions(+), 22 deletions(-) diff --git a/_test/composer.lock b/_test/composer.lock index e96646fc9..5b34e1a7c 100644 --- a/_test/composer.lock +++ b/_test/composer.lock @@ -459,16 +459,16 @@ }, { "name": "phpstan/phpstan", - "version": "1.10.34", + "version": "1.10.41", "source": { "type": "git", "url": "https://github.com/phpstan/phpstan.git", - "reference": "7f806b6f1403e6914c778140e2ba07c293cb4901" + "reference": "c6174523c2a69231df55bdc65b61655e72876d76" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpstan/phpstan/zipball/7f806b6f1403e6914c778140e2ba07c293cb4901", - "reference": "7f806b6f1403e6914c778140e2ba07c293cb4901", + "url": "https://api.github.com/repos/phpstan/phpstan/zipball/c6174523c2a69231df55bdc65b61655e72876d76", + "reference": "c6174523c2a69231df55bdc65b61655e72876d76", "shasum": "" }, "require": { @@ -517,7 +517,7 @@ "type": "tidelift" } ], - "time": "2023-09-13T09:49:47+00:00" + "time": "2023-11-05T12:57:57+00:00" }, { "name": "phpunit/php-code-coverage", @@ -818,16 +818,16 @@ }, { "name": "phpunit/phpunit", - "version": "8.5.33", + "version": "8.5.34", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "7d1ff0e8c6b35db78ff13e3e05517d7cbf7aa32e" + "reference": "622d0186707f39a4ae71df3bcf42d759bb868854" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/7d1ff0e8c6b35db78ff13e3e05517d7cbf7aa32e", - "reference": "7d1ff0e8c6b35db78ff13e3e05517d7cbf7aa32e", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/622d0186707f39a4ae71df3bcf42d759bb868854", + "reference": "622d0186707f39a4ae71df3bcf42d759bb868854", "shasum": "" }, "require": { @@ -857,9 +857,9 @@ "sebastian/version": "^2.0.1" }, "suggest": { - "ext-soap": "*", - "ext-xdebug": "*", - "phpunit/php-invoker": "^2.0.0" + "ext-soap": "To be able to generate mocks based on WSDL files", + "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage", + "phpunit/php-invoker": "To allow enforcing time limits" }, "bin": [ "phpunit" @@ -895,7 +895,8 @@ ], "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", - "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.33" + "security": "https://github.com/sebastianbergmann/phpunit/security/policy", + "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.34" }, "funding": [ { @@ -911,25 +912,25 @@ "type": "tidelift" } ], - "time": "2023-02-27T13:04:50+00:00" + "time": "2023-09-19T05:20:51+00:00" }, { "name": "rector/rector", - "version": "0.18.3", + "version": "0.18.7", "source": { "type": "git", "url": "https://github.com/rectorphp/rector.git", - "reference": "ba7988e3e028e68e07191d75b0d5473ac320c5e7" + "reference": "caba0e294a1228f64f8a9cfd0d715cc8af47c4da" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/rectorphp/rector/zipball/ba7988e3e028e68e07191d75b0d5473ac320c5e7", - "reference": "ba7988e3e028e68e07191d75b0d5473ac320c5e7", + "url": "https://api.github.com/repos/rectorphp/rector/zipball/caba0e294a1228f64f8a9cfd0d715cc8af47c4da", + "reference": "caba0e294a1228f64f8a9cfd0d715cc8af47c4da", "shasum": "" }, "require": { "php": "^7.2|^8.0", - "phpstan/phpstan": "^1.10.31" + "phpstan/phpstan": "^1.10.35" }, "conflict": { "rector/rector-doctrine": "*", @@ -959,7 +960,7 @@ ], "support": { "issues": "https://github.com/rectorphp/rector/issues", - "source": "https://github.com/rectorphp/rector/tree/0.18.3" + "source": "https://github.com/rectorphp/rector/tree/0.18.7" }, "funding": [ { @@ -967,7 +968,7 @@ "type": "github" } ], - "time": "2023-09-12T20:18:14+00:00" + "time": "2023-11-13T10:11:05+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", diff --git a/_test/rector.php b/_test/rector.php index a7e94d6b0..ecd3c6d7c 100644 --- a/_test/rector.php +++ b/_test/rector.php @@ -66,7 +66,7 @@ return static function (RectorConfig $rectorConfig): void { // supported minimum PHP version can be overridden by environment variable [$major, $minor] = explode('.', $_SERVER['RECTOR_MIN_PHP'] ?? '' ?: '7.4'); $phpset = LevelSetList::class . '::UP_TO_PHP_' . $major . $minor; - echo "Using PHP set $phpset\n"; + fwrite(STDERR, "Using PHP set $phpset\n"); // define sets of rules $rectorConfig->sets([ -- 2.11.4.GIT