From f8474af8c2e53480d0c1d8308bee4b440617dd75 Mon Sep 17 00:00:00 2001 From: Tim Weisenberger Date: Tue, 22 Oct 2024 09:47:08 +0200 Subject: [PATCH] fix: Update dev dependencies and remove obsolete Rector rule --- composer.json | 4 ++-- rector.php | 4 ---- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index 9114235..50b4ae2 100755 --- a/composer.json +++ b/composer.json @@ -11,8 +11,8 @@ }, "require-dev": { "ext-sqlite3": "*", - "ssch/typo3-rector": "^2.6", - "typo3/testing-framework": "^8.0", + "ssch/typo3-rector": "^2.10", + "typo3/testing-framework": "^8.2", "phpunit/phpcov": "^9.0", "netlogix/coding-guidelines-php": "^1.0" }, diff --git a/rector.php b/rector.php index 572ec93..ed50bd3 100644 --- a/rector.php +++ b/rector.php @@ -2,7 +2,6 @@ declare(strict_types=1); -use Rector\CodeQuality\Rector\Array_\CallableThisArrayToAnonymousFunctionRector; use Rector\Config\RectorConfig; use Rector\Php81\Rector\Array_\FirstClassCallableRector; use Rector\PostRector\Rector\NameImportingPostRector; @@ -61,7 +60,4 @@ FirstClassCallableRector::class => [ __DIR__ . '/Configuration/Services.php', ], - CallableThisArrayToAnonymousFunctionRector::class => [ - __DIR__ . '/Configuration/Services.php', - ], ]);