-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 1.83 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 1.83 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
{
"name": "app-dev-panel/api",
"type": "library",
"description": "ADP API — REST + SSE endpoints for debug data, live application inspection, and language-agnostic ingestion",
"keywords": [
"debug",
"debug-panel",
"debug-api",
"profiler",
"inspector",
"rest-api",
"sse",
"openapi",
"observability",
"monitoring",
"tracing",
"ai",
"llm",
"ai-debugging",
"ingestion",
"microservices",
"developer-tools",
"devtools",
"app-dev-panel",
"adp",
"application-development-panel",
"development-server"
],
"license": "BSD-3-Clause",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.4",
"alexkart/curl-builder": "^1.0",
"app-dev-panel/kernel": "*",
"app-dev-panel/mcp-server": "*",
"gitonomy/gitlib": "^1.3",
"guzzlehttp/guzzle": "^7.5",
"guzzlehttp/psr7": "^2.4",
"psr/container": "^2.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0|^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^3.0",
"psr/simple-cache": "^2.0|^3.0",
"symfony/process": "^5.4|^6.0|^7.0|^8.0",
"yiisoft/var-dumper": "^1.4",
"zircote/swagger-php": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0"
},
"autoload": {
"psr-4": {
"AppDevPanel\\Api\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AppDevPanel\\Api\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit --testdox --no-interaction"
},
"config": {
"sort-packages": true
}
}