-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (49 loc) · 959 Bytes
/
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
51
52
53
{
"name": "phpgt/http",
"description": "PSR-7 HTTP message implementation.",
"license": "MIT",
"version": "1.3.1",
"extra": {
"branch-alias": {
"dev-master": "1.3.1-dev",
"dev-222-redirect": "1.3.1-dev"
}
},
"require": {
"php": ">=8.1",
"ext-dom": "*",
"ext-curl": "*",
"ext-fileinfo": "*",
"phpgt/input": "^1.2",
"phpgt/typesafegetter": "^1.3",
"phpgt/promise": "^2.2",
"phpgt/async": "^1.0",
"phpgt/json": "^1.2",
"phpgt/curl": "^3.1",
"phpgt/propfunc": "^1.0",
"psr/http-message": "^2.0",
"willdurand/negotiation": "3.1.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "10.1.*",
"phpmd/phpmd": "^2.13",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Gt\\Http\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Gt\\Http\\Test\\": "./test/phpunit"
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/PhpGt"
}
]
}