From 436d6ff616fde7fb3fcb8b2236f592bfb780fa2c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 11 Aug 2023 05:39:44 +0000 Subject: [PATCH 1/2] composer(deps-dev): bump the minor-patch-dependencies group with 5 updates Updates the requirements on [mimmi20/coding-standard](https://github.com/mimmi20/coding-standard), [phpstan/phpstan](https://github.com/phpstan/phpstan), [phpstan/phpstan-deprecation-rules](https://github.com/phpstan/phpstan-deprecation-rules), [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) and [rector/rector](https://github.com/rectorphp/rector) to permit the latest version. Updates `mimmi20/coding-standard` to 5.1.10 - [Release notes](https://github.com/mimmi20/coding-standard/releases) - [Commits](https://github.com/mimmi20/coding-standard/compare/5.1.9...5.1.10) Updates `phpstan/phpstan` to 1.10.28 - [Release notes](https://github.com/phpstan/phpstan/releases) - [Changelog](https://github.com/phpstan/phpstan/blob/1.11.x/CHANGELOG.md) - [Commits](https://github.com/phpstan/phpstan/compare/1.10.26...1.10.28) Updates `phpstan/phpstan-deprecation-rules` to 1.1.4 - [Release notes](https://github.com/phpstan/phpstan-deprecation-rules/releases) - [Commits](https://github.com/phpstan/phpstan-deprecation-rules/compare/1.1.3...1.1.4) Updates `phpunit/phpunit` to 10.3.1 - [Changelog](https://github.com/sebastianbergmann/phpunit/blob/10.3.1/ChangeLog-10.3.md) - [Commits](https://github.com/sebastianbergmann/phpunit/compare/10.3.0...10.3.1) Updates `rector/rector` to 0.17.12 - [Release notes](https://github.com/rectorphp/rector/releases) - [Commits](https://github.com/rectorphp/rector/compare/0.17.10...0.17.12) --- updated-dependencies: - dependency-name: mimmi20/coding-standard dependency-type: direct:development dependency-group: minor-patch-dependencies - dependency-name: phpstan/phpstan dependency-type: direct:development dependency-group: minor-patch-dependencies - dependency-name: phpstan/phpstan-deprecation-rules dependency-type: direct:development dependency-group: minor-patch-dependencies - dependency-name: phpunit/phpunit dependency-type: direct:development dependency-group: minor-patch-dependencies - dependency-name: rector/rector dependency-type: direct:development dependency-group: minor-patch-dependencies ... Signed-off-by: dependabot[bot] --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 978ba12..b4f9afb 100644 --- a/composer.json +++ b/composer.json @@ -32,14 +32,14 @@ "infection/infection": "^0.27.0", "laminas/laminas-modulemanager": "^2.14.0", "laminas/laminas-servicemanager": "^3.21.0", - "mimmi20/coding-standard": "^5.1.9", + "mimmi20/coding-standard": "^5.1.10", "nikic/php-parser": "^v4.16.0", "phpstan/extension-installer": "^1.3.1", - "phpstan/phpstan": "^1.10.26", - "phpstan/phpstan-deprecation-rules": "^1.1.3", + "phpstan/phpstan": "^1.10.28", + "phpstan/phpstan-deprecation-rules": "^1.1.4", "phpstan/phpstan-phpunit": "^1.3.13", - "phpunit/phpunit": "^10.3.0", - "rector/rector": "^0.17.10", + "phpunit/phpunit": "^10.3.1", + "rector/rector": "^0.17.12", "vimeo/psalm": "^5.14.1" }, "autoload": { From 7d57507327354efe868deb4aaaa745ecee889b2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Fri, 11 Aug 2023 07:52:41 +0200 Subject: [PATCH 2/2] fix issue --- rector.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/rector.php b/rector.php index 09db8d9..e219210 100644 --- a/rector.php +++ b/rector.php @@ -15,7 +15,6 @@ use Rector\DeadCode\Rector\If_\RemoveDeadInstanceOfRector; use Rector\DeadCode\Rector\StaticCall\RemoveParentCallWithoutParentRector; use Rector\Php71\Rector\FuncCall\CountOnNullRector; -use Rector\Php80\Rector\FunctionLike\UnionTypesRector; use Rector\Php81\Rector\Array_\FirstClassCallableRector; use Rector\Php81\Rector\FuncCall\NullToStrictStringFuncCallArgRector; use Rector\PHPUnit\Set\PHPUnitSetList; @@ -39,7 +38,6 @@ $rectorConfig->skip( [ - UnionTypesRector::class, NullToStrictStringFuncCallArgRector::class, RemoveDeadInstanceOfRector::class, FirstClassCallableRector::class,