-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.13 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.13 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
{
"name": "nette/mcp-inspector",
"description": "🔭 MCP server for Nette application introspection",
"keywords": ["nette", "mcp", "model-context-protocol", "introspection", "di", "dependency-injection", "ai", "llm"],
"homepage": "https://nette.org",
"license": ["BSD-3-Clause", "GPL-2.0-only", "GPL-3.0-only"],
"authors": [
{
"name": "David Grudl",
"homepage": "https://davidgrudl.com"
}
],
"require": {
"php": "8.2 - 8.5",
"mcp/sdk": "^0.2",
"nette/di": "^3.2",
"nette/bootstrap": "^3.2",
"nette/neon": "^3.4",
"nyholm/psr7": "^1.8",
"nyholm/psr7-server": "^1.1"
},
"require-dev": {
"nette/application": "^3.2",
"nette/database": "^3.2",
"nette/routing": "^3.1",
"nette/tester": "^2.5.2",
"tracy/tracy": "^2.11",
"mockery/mockery": "^1.6@stable",
"phpstan/phpstan-nette": "^2.0@stable"
},
"autoload": {
"psr-4": {
"Nette\\": "src"
}
},
"bin": [
"bin/mcp-inspector"
],
"scripts": {
"phpstan": "phpstan analyse",
"tester": "tester tests -s -C"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}