-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 986 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
{
"name": "larium/http-client",
"description": "An http client implemention compatible with psr-7 http message.",
"keywords": ["psr7", "client", "http"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Andreas Kollaros",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-curl": "*",
"php-http/discovery": "^1.19",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"laminas/laminas-diactoros": "^2.0",
"phpunit/phpunit": "^10.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Larium\\": "src/"
}
},
"provide": {
"psr/http-client-implementation": "1.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
}
}