-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
65 lines (58 loc) · 991 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "phpgt/fetch",
"description": "Asynchronous HTTP client with promises.",
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*",
"phpgt/async": "^1.0",
"phpgt/promise": "^2.2.3",
"phpgt/http": "^1.3",
"phpgt/curl": "^3.1.1",
"phpgt/json": "^1.2",
"phpgt/propfunc": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.2",
"phpmd/phpmd": "^2.13",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Gt\\Fetch\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Gt\\Fetch\\Test\\": "./test/phpunit"
}
},
"authors": [
{
"name": "Greg Bowler",
"email": "[email protected]"
}
],
"keywords": [
"http-client",
"http",
"fetch",
"async",
"asynchronous",
"xmlhttprequest",
"ajax",
"get",
"post",
"curl",
"curl_multi"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/PhpGt"
}
]
}