-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.28 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.28 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
{
"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",
"conformance-draft": "@php conformance/run-conformance.php draft",
"conformance-draft-server": "@php conformance/run-conformance.php server-draft",
"conformance-draft-client": "@php conformance/run-conformance.php client-draft"
}
}