forked from php-mcp/server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
83 lines (83 loc) · 2.27 KB
/
composer.json
File metadata and controls
83 lines (83 loc) · 2.27 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "php-mcp/server",
"version": "3.1.1",
"description": "PHP SDK for building Model Context Protocol (MCP) servers - Create MCP tools, resources, and prompts",
"keywords": [
"mcp",
"model context protocol",
"server",
"php",
"php mcp",
"php mcp sdk",
"php mcp server",
"php mcp tools",
"php mcp resources",
"php mcp prompts",
"php model context protocol"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kyrian Obikwelu",
"email": "koshnawaza@gmail.com"
}
],
"replace": {
"php-mcp/server": "3.1.1"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Leantime/reactphp-http.git"
}
],
"require": {
"php": ">=8.1",
"opis/json-schema": "^2.4",
"php-mcp/schema": "^1.0",
"phpdocumentor/reflection-docblock": "^5.6",
"psr/clock": "^1.0",
"psr/container": "^1.0 || ^2.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
"react/event-loop": "^1.5",
"react/promise": "^3.0",
"react/stream": "^1.4",
"symfony/finder": "^6.4 || ^7.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.75",
"mockery/mockery": "^1.6",
"pestphp/pest": "^2.36.0|^3.5.0",
"react/async": "^4.0",
"react/child-process": "^0.6.6",
"symfony/var-dumper": "^6.4.11|^7.1.5"
},
"suggest": {
"react/http": "Required for using the ReactPHP HTTP transport handler (^1.11 recommended)."
},
"autoload": {
"psr-4": {
"PhpMcp\\Server\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpMcp\\Server\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test:coverage": "XDEBUG_MODE=coverage ./vendor/bin/pest --coverage",
"lint": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}