forked from pronskiy/mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.26 KB
/
composer.json
File metadata and controls
57 lines (57 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
50
51
52
53
54
55
56
57
{
"name": "pronskiy/mcp",
"description": "🐉 The fast, PHP way to build MCP servers",
"version": "0.1.0",
"keywords": [
"pronskiy",
"mcp"
],
"homepage": "https://github.com/pronskiy/mcp",
"license": "MIT",
"authors": [
{
"name": "Roman Pronskiy",
"email": "roman@pronskiy.com"
}
],
"require": {
"php": "^8.3",
"logiscape/mcp-sdk-php": "^v1.1.0"
},
"require-dev": {
"phpstan/phpstan": "^2.1.12",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-arch": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0",
"phpstan/extension-installer": "^1.3||^2.0",
"phpstan/phpstan-deprecation-rules": "^1.1||^2.0",
"phpstan/phpstan-phpunit": "^1.3||^2.0",
"symfony/console": "^v7.2.5"
},
"autoload": {
"psr-4": {
"Pronskiy\\Mcp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pronskiy\\Mcp\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
},
"minimum-stability": "dev",
"prefer-stable": true
}