Skip to content

Commit aa599fd

Browse files
committed
[All] Normalize composer.json files
Ran composer normalize on all composer.json files to ensure consistent formatting and ordering of dependencies.
1 parent cb2d483 commit aa599fd

File tree

5 files changed

+16
-17
lines changed

5 files changed

+16
-17
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"require-dev": {
99
"php": ">=8.2",
1010
"php-cs-fixer/shim": "^3.75",
11-
"symfony/finder": "^6.4 || ^7.0",
12-
"symfony/filesystem": "^6.4 || ^7.0"
11+
"symfony/filesystem": "^6.4 || ^7.0",
12+
"symfony/finder": "^6.4 || ^7.0"
1313
},
1414
"config": {
1515
"sort-packages": true

examples/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"description": "Example scripts about using Symfony AI",
44
"license": "MIT",
55
"type": "project",
6-
"minimum-stability": "dev",
76
"require": {
87
"php": ">=8.2",
98
"ext-pdo": "*",
@@ -35,6 +34,7 @@
3534
"require-dev": {
3635
"phpstan/phpstan": "^2.1"
3736
},
37+
"minimum-stability": "dev",
3838
"autoload": {
3939
"psr-4": {
4040
"Symfony\\AI\\Fixtures\\": "../fixtures/"

src/mcp-bundle/composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "symfony/mcp-bundle",
3-
"type": "symfony-bundle",
43
"description": "Symfony integration bundle for Model Context Protocol (via symfony/mcp-sdk)",
54
"license": "MIT",
5+
"type": "symfony-bundle",
66
"authors": [
77
{
88
"name": "Christopher Hertel",
@@ -23,9 +23,8 @@
2323
"phpstan/phpstan": "^2.1",
2424
"phpunit/phpunit": "^11.5"
2525
},
26-
"config": {
27-
"sort-packages": true
28-
},
26+
"minimum-stability": "dev",
27+
"prefer-stable": true,
2928
"autoload": {
3029
"psr-4": {
3130
"Symfony\\AI\\McpBundle\\": "src/"
@@ -36,6 +35,7 @@
3635
"Symfony\\AI\\PHPStan\\": "../../.phpstan"
3736
}
3837
},
39-
"minimum-stability": "dev",
40-
"prefer-stable": true
38+
"config": {
39+
"sort-packages": true
40+
}
4141
}

src/mcp-sdk/composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "symfony/mcp-sdk",
3-
"type": "library",
43
"description": "Model Context Protocol SDK for Client and Server applications in PHP",
54
"license": "MIT",
5+
"type": "library",
66
"authors": [
77
{
88
"name": "Christopher Hertel",
@@ -21,12 +21,12 @@
2121
"require-dev": {
2222
"phpstan/phpstan": "^2.1",
2323
"phpunit/phpunit": "^11.5",
24-
"symfony/console": "^6.4 || ^7.0",
25-
"psr/cache": "^3.0"
24+
"psr/cache": "^3.0",
25+
"symfony/console": "^6.4 || ^7.0"
2626
},
2727
"suggest": {
28-
"symfony/console": "To use SymfonyConsoleTransport for STDIO",
29-
"psr/cache": "To use CachePoolStore with SSE Transport"
28+
"psr/cache": "To use CachePoolStore with SSE Transport",
29+
"symfony/console": "To use SymfonyConsoleTransport for STDIO"
3030
},
3131
"autoload": {
3232
"psr-4": {

src/mcp-sdk/examples/cli/composer.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
],
1212
"require": {
1313
"php": ">=8.2",
14-
"symfony/mcp-sdk": "@dev",
15-
"symfony/console": "^7.2"
14+
"symfony/console": "^7.2",
15+
"symfony/mcp-sdk": "@dev"
1616
},
1717
"minimum-stability": "stable",
1818
"autoload": {
@@ -21,4 +21,3 @@
2121
}
2222
}
2323
}
24-

0 commit comments

Comments
 (0)