forked from CallMeLeon167/debugphp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1 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
{
"name": "callmeleon167/debugphp",
"description": "Real-time PHP debugging in the browser — zero config, zero dependencies, just send() and see.",
"license": "MIT",
"type": "library",
"keywords": [
"debug",
"debugging",
"php",
"real-time",
"sse",
"developer-tools"
],
"homepage": "https://debugphp.dev",
"authors": [
{
"name": "Leon Schmidt",
"homepage": "https://github.com/CallMeLeon167",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/CallMeLeon167/debugphp/issues",
"source": "https://github.com/CallMeLeon167/debugphp"
},
"require": {
"php": "^8.1",
"ext-curl": "*"
},
"require-dev": {
"phpstan/phpstan": "^2.0"
},
"autoload": {
"psr-4": {
"DebugPHP\\": "src/"
}
},
"scripts": {
"analyse": "phpstan analyse"
},
"minimum-stability": "stable"
}