diff --git a/composer.json b/composer.json index a34d369..f6aca4a 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ } ], "require": { - "php-llm/mcp-sdk": "dev-main", + "php-llm/mcp-sdk": "^0.1", "symfony/config": "^6.4 || ^7.0", "symfony/console": "^6.4 || ^7.0", "symfony/dependency-injection": "^6.4 || ^7.0", diff --git a/rector.php b/rector.php index 3fb5442..f988190 100644 --- a/rector.php +++ b/rector.php @@ -6,7 +6,6 @@ use Rector\Php74\Rector\Closure\ClosureToArrowFunctionRector; use Rector\PHPUnit\CodeQuality\Rector\Class_\PreferPHPUnitSelfCallRector; use Rector\PHPUnit\CodeQuality\Rector\Class_\PreferPHPUnitThisCallRector; -use Rector\PHPUnit\CodeQuality\Rector\MethodCall\AssertCountWithZeroToAssertEmptyRector; use Rector\PHPUnit\Set\PHPUnitSetList; return RectorConfig::configure() @@ -24,7 +23,6 @@ ]) ->withImportNames(importShortClasses: false) ->withSkip([ - AssertCountWithZeroToAssertEmptyRector::class, ClosureToArrowFunctionRector::class, PreferPHPUnitThisCallRector::class, ])