-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.66 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.66 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
{
"name": "app-dev-panel/kernel",
"type": "library",
"description": "ADP Kernel — core engine for the Application Development Panel: debugger lifecycle, collectors, storage, and PSR proxy system",
"keywords": [
"debug",
"debug-panel",
"debugger",
"profiler",
"php-profiler",
"collectors",
"tracing",
"logging",
"observability",
"monitoring",
"diagnostics",
"performance",
"apm",
"ai",
"llm",
"psr",
"developer-tools",
"devtools",
"app-dev-panel",
"adp",
"application-development-panel",
"development-server"
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.4",
"ext-mbstring": "*",
"guzzlehttp/psr7": "^2.4",
"psr/container": "^2.0",
"psr/event-dispatcher": "^1.0",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0|^2.0",
"psr/log": "^1.0|^2.0|^3.0",
"symfony/console": "^6.0|^7.0|^8.0",
"symfony/var-dumper": "^6.4|^7.0|^8.0",
"yiisoft/files": "^2.0",
"yiisoft/strings": "^2.2",
"yiisoft/var-dumper": "^1.7"
},
"suggest": {
"open-telemetry/sdk": "Required for SpanProcessorInterfaceProxy to capture OpenTelemetry spans"
},
"require-dev": {},
"autoload": {
"psr-4": {
"AppDevPanel\\Kernel\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"AppDevPanel\\Kernel\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit --testdox --no-interaction"
}
}