forked from diagnosia/httpful
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 808 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
{
"name": "maxiwheat/httpful",
"description": "A Readable, Chainable, REST friendly, PHP HTTP Client",
"homepage": "https://github.com/maxiwheat/httpful",
"license": "MIT",
"keywords": ["http", "curl", "rest", "restful", "api", "requests"],
"version": "0.4.0",
"authors": [
{
"name": "Nate Good",
"email": "[email protected]",
"homepage": "http://nategood.com"
}
],
"require": {
"php": ">=8.1",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0.7",
"phpstan/phpstan": "^1.9.17"
},
"autoload": {
"psr-4": {
"Httpful\\": "src/Httpful/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}