Skip to content

Commit 4925b7a

Browse files
authored
fix: limit bundle to mcp-sdk version 0.1 (#4)
1 parent e2d1b7a commit 4925b7a

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"php-llm/mcp-sdk": "dev-main",
13+
"php-llm/mcp-sdk": "^0.1",
1414
"symfony/config": "^6.4 || ^7.0",
1515
"symfony/console": "^6.4 || ^7.0",
1616
"symfony/dependency-injection": "^6.4 || ^7.0",

rector.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
use Rector\Php74\Rector\Closure\ClosureToArrowFunctionRector;
77
use Rector\PHPUnit\CodeQuality\Rector\Class_\PreferPHPUnitSelfCallRector;
88
use Rector\PHPUnit\CodeQuality\Rector\Class_\PreferPHPUnitThisCallRector;
9-
use Rector\PHPUnit\CodeQuality\Rector\MethodCall\AssertCountWithZeroToAssertEmptyRector;
109
use Rector\PHPUnit\Set\PHPUnitSetList;
1110

1211
return RectorConfig::configure()
@@ -24,7 +23,6 @@
2423
])
2524
->withImportNames(importShortClasses: false)
2625
->withSkip([
27-
AssertCountWithZeroToAssertEmptyRector::class,
2826
ClosureToArrowFunctionRector::class,
2927
PreferPHPUnitThisCallRector::class,
3028
])

0 commit comments

Comments
 (0)