-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.17 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.17 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
{
"name": "mougrim/php-xdebug-proxy",
"description": "Xdebug (dbgp) proxy",
"type": "project",
"require": {
"php": ">=8.2",
"amphp/socket": "^2.3.1"
},
"require-dev": {
"ext-dom": "*",
"roave/security-advisories": "dev-latest",
"phpro/grumphp": "^2.10.0",
"friendsofphp/php-cs-fixer": "^3.94.2",
"phpunit/phpunit": "^11.5.55",
"amphp/log": "^2.0.0",
"phpstan/phpstan": "^2.1.39",
"jetbrains/phpstorm-attributes": "^1.2"
},
"license": "MIT",
"authors": [
{
"name": "Mougrim",
"email": "rinat@mougrim.ru"
}
],
"bin": ["bin/xdebug-proxy"],
"autoload": {
"psr-4": {
"Mougrim\\XdebugProxy\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Mougrim\\XdebugProxy\\": "tests"
}
},
"suggest": {
"ext-dom": "Required for parse XML by default",
"ext-pcntl": "Required for graceful stop daemon",
"amphp/log": "Required for write logs by default"
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
}
}
}