-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 lines (49 loc) · 1.04 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
{
"name": "nimbly/shuttle",
"description": "Simple PSR-18 HTTP client.",
"type": "library",
"keywords": [
"http",
"client",
"http client",
"curl",
"stream context",
"psr-18"
],
"license": "MIT",
"authors": [
{
"name": "Brent Scheffler",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"nimbly/capsule": "^3.0",
"psr/http-client": "^1.0"
},
"provide": {
"psr/http-client-implementation": "^1.0"
},
"autoload": {
"psr-4": {
"Nimbly\\Shuttle\\": "src/"
}
},
"require-dev": {
"vimeo/psalm": "^5.0",
"phpunit/phpunit": "^9.0",
"php-coveralls/php-coveralls": "^2.1",
"symfony/var-dumper": "^5.0",
"guzzlehttp/psr7": "^2.7"
},
"autoload-dev": {
"psr-4": {
"Nimbly\\Shuttle\\Tests\\": "tests/"
}
},
"suggest": {
"ext-curl": "Use cURL library to make HTTP calls."
}
}