forked from alyldas/http-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 928 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
{
"name": "socialconnect/http-client",
"description": "PSR-18 HTTP Client on top of Guzzle PSR7",
"keywords": [
"http-client",
"curl",
"psr-18"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dmitry Patsura",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"ext-curl": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.1",
"psr/simple-cache": "^3.0",
"guzzlehttp/psr7": "^2.7"
},
"autoload": {
"psr-4": {
"SocialConnect\\HttpClient\\": "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"Test\\" : "tests/"
}
},
"require-dev": {
"symfony/http-foundation": "^7.1",
"phpunit/phpunit": "^11.2",
"phpstan/phpstan": "^1.11"
}
}