Skip to content

Commit 2516183

Browse files
committed
Add support URLs for Packagist with -php suffix
1 parent 0f67280 commit 2516183

File tree

1 file changed

+52
-40
lines changed

1 file changed

+52
-40
lines changed

composer.json

Lines changed: 52 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,55 @@
11
{
2-
"name": "code-wheel/mcp-error-codes",
3-
"description": "Standardized error codes and fluent error builders for MCP (Model Context Protocol) servers in PHP",
4-
"type": "library",
5-
"keywords": ["mcp", "model-context-protocol", "error-codes", "error-handling", "api", "ai", "llm"],
6-
"license": "MIT",
7-
"authors": [
8-
{
9-
"name": "CodeWheel",
10-
"email": "dev@codewheel.com"
11-
}
12-
],
13-
"require": {
14-
"php": ">=8.1"
15-
},
16-
"require-dev": {
17-
"mcp/sdk": "^0.2",
18-
"phpstan/phpstan": "^1.10",
19-
"phpunit/phpunit": "^10.0 || ^11.0"
20-
},
21-
"suggest": {
22-
"mcp/sdk": "Required for toCallToolResult() and toJsonRpcError() conversion methods"
23-
},
24-
"autoload": {
25-
"psr-4": {
26-
"CodeWheel\\McpErrorCodes\\": "src/"
27-
}
28-
},
29-
"autoload-dev": {
30-
"psr-4": {
31-
"CodeWheel\\McpErrorCodes\\Tests\\": "tests/"
32-
}
33-
},
34-
"scripts": {
35-
"test": "phpunit",
36-
"analyse": "phpstan analyse src --level=8"
37-
},
38-
"minimum-stability": "stable",
39-
"prefer-stable": true,
40-
"config": {
41-
"sort-packages": true
2+
"name": "code-wheel/mcp-error-codes",
3+
"description": "Standardized error codes and fluent error builders for MCP (Model Context Protocol) servers in PHP",
4+
"type": "library",
5+
"keywords": [
6+
"mcp",
7+
"model-context-protocol",
8+
"error-codes",
9+
"error-handling",
10+
"api",
11+
"ai",
12+
"llm"
13+
],
14+
"license": "MIT",
15+
"authors": [
16+
{
17+
"name": "CodeWheel",
18+
"email": "dev@codewheel.com"
4219
}
20+
],
21+
"require": {
22+
"php": ">=8.1"
23+
},
24+
"require-dev": {
25+
"mcp/sdk": "^0.2",
26+
"phpstan/phpstan": "^1.10",
27+
"phpunit/phpunit": "^10.0 || ^11.0"
28+
},
29+
"suggest": {
30+
"mcp/sdk": "Required for toCallToolResult() and toJsonRpcError() conversion methods"
31+
},
32+
"autoload": {
33+
"psr-4": {
34+
"CodeWheel\\McpErrorCodes\\": "src/"
35+
}
36+
},
37+
"autoload-dev": {
38+
"psr-4": {
39+
"CodeWheel\\McpErrorCodes\\Tests\\": "tests/"
40+
}
41+
},
42+
"scripts": {
43+
"test": "phpunit",
44+
"analyse": "phpstan analyse src --level=8"
45+
},
46+
"minimum-stability": "stable",
47+
"prefer-stable": true,
48+
"config": {
49+
"sort-packages": true
50+
},
51+
"support": {
52+
"issues": "https://github.com/code-wheel/mcp-error-codes-php/issues",
53+
"source": "https://github.com/code-wheel/mcp-error-codes-php/tree/master"
54+
}
4355
}

0 commit comments

Comments
 (0)