-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.26 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "hi/mcp-server",
"description": "Model Context Protocol (MCP) Server for PHP - Expose your PHP codebase API to AI assistants",
"type": "library",
"keywords": ["mcp", "model-context-protocol", "ai", "claude", "api-documentation", "code-analysis"],
"license": "MIT",
"authors": [
{
"name": "Hi Framework Team",
"email": "qiang.wang@holla.world"
}
],
"require": {
"php": ">=8.2",
"ext-json": "*",
"ext-tokenizer": "*"
},
"require-dev": {
"nikic/php-parser": "^5.0",
"phpunit/phpunit": "^11.0",
"friendsofphp/php-cs-fixer": "^3.64",
"vimeo/psalm": "^6.0",
"hi/framework": "^2.0"
},
"autoload": {
"psr-4": {
"Hi\\MCP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hi\\MCP\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"cs": "php-cs-fixer fix --diff",
"psalm": "psalm --show-info=true"
},
"bin": [
"bin/mcp-server",
"bin/mcp-generate"
],
"suggest": {
"ext-pcntl": "For graceful signal handling (SIGINT, SIGTERM, SIGHUP)"
},
"minimum-stability": "stable",
"prefer-stable": true
}