-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
50 lines (50 loc) · 1.23 KB
/
composer.json
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
{
"name": "ostrolucky/stdinho",
"description": "Turn any STDIN/STDOUT into HTTP server",
"license": "GPL-3.0",
"type": "project",
"authors": [
{
"name": "Gabriel Ostrolucký",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-fileinfo": "*",
"ext-json": "*",
"amphp/amp": "^3",
"amphp/byte-stream": "^2",
"amphp/socket": "^2",
"jean85/pretty-package-versions": "^2.0",
"psr/log": ">=2.0",
"symfony/console": ">=4.1"
},
"require-dev": {
"amphp/dns": "^2",
"amphp/http": "^2.1",
"amphp/http-client": "^5",
"amphp/process": "^2",
"mockery/mockery": "^1.5",
"phpunit/php-code-coverage": "^10 || ^11",
"phpunit/phpunit": "^10.5 || ^11",
"seec/phpunit-consecutive-params": "^1.1"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Ostrolucky\\Stdinho\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ostrolucky\\Stdinho\\Tests\\": "tests"
}
},
"bin": [
"bin/stdinho"
],
"config": {
"sort-packages": true
}
}