Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"require-dev": {
"php": ">=8.2",
"php-cs-fixer/shim": "^3.75",
"symfony/finder": "^6.4 || ^7.0",
"symfony/filesystem": "^6.4 || ^7.0"
"symfony/filesystem": "^6.4 || ^7.0",
"symfony/finder": "^6.4 || ^7.0"
},
"config": {
"sort-packages": true
Expand Down
2 changes: 1 addition & 1 deletion examples/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"description": "Example scripts about using Symfony AI",
"license": "MIT",
"type": "project",
"minimum-stability": "dev",
"require": {
"php": ">=8.2",
"ext-pdo": "*",
Expand Down Expand Up @@ -35,6 +34,7 @@
"require-dev": {
"phpstan/phpstan": "^2.1"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Symfony\\AI\\Fixtures\\": "../fixtures/"
Expand Down
12 changes: 6 additions & 6 deletions src/mcp-bundle/composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "symfony/mcp-bundle",
"type": "symfony-bundle",
"description": "Symfony integration bundle for Model Context Protocol (via symfony/mcp-sdk)",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Christopher Hertel",
Expand All @@ -23,9 +23,8 @@
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Symfony\\AI\\McpBundle\\": "src/"
Expand All @@ -36,6 +35,7 @@
"Symfony\\AI\\PHPStan\\": "../../.phpstan"
}
},
"minimum-stability": "dev",
"prefer-stable": true
"config": {
"sort-packages": true
}
}
10 changes: 5 additions & 5 deletions src/mcp-sdk/composer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "symfony/mcp-sdk",
"type": "library",
"description": "Model Context Protocol SDK for Client and Server applications in PHP",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Christopher Hertel",
Expand All @@ -21,12 +21,12 @@
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5",
"symfony/console": "^6.4 || ^7.0",
"psr/cache": "^3.0"
"psr/cache": "^3.0",
"symfony/console": "^6.4 || ^7.0"
},
"suggest": {
"symfony/console": "To use SymfonyConsoleTransport for STDIO",
"psr/cache": "To use CachePoolStore with SSE Transport"
"psr/cache": "To use CachePoolStore with SSE Transport",
"symfony/console": "To use SymfonyConsoleTransport for STDIO"
},
"autoload": {
"psr-4": {
Expand Down
5 changes: 2 additions & 3 deletions src/mcp-sdk/examples/cli/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
],
"require": {
"php": ">=8.2",
"symfony/mcp-sdk": "@dev",
"symfony/console": "^7.2"
"symfony/console": "^7.2",
"symfony/mcp-sdk": "@dev"
},
"minimum-stability": "stable",
"autoload": {
Expand All @@ -21,4 +21,3 @@
}
}
}