-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.04 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.04 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
{
"name": "logiscape/mcp-sdk-php",
"description": "Model Context Protocol SDK for PHP",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Mcp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mcp\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"psr/log": "^2.0 ||^3.0",
"ext-curl": "*",
"ext-json": "*"
},
"suggest": {
"ext-pcntl": "For better process handling in CLI environments",
"monolog/monolog": "^3.0 - For debugging and logging capabilities"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10"
},
"scripts": {
"test": "phpunit",
"analyse": "phpstan analyse",
"check": ["@test", "@analyse"],
"conformance": "@php conformance/run-conformance.php",
"conformance-server": "@php conformance/run-conformance.php server",
"conformance-client": "@php conformance/run-conformance.php client"
}
}