-
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": "aternos/curl-psr",
"description": "A simple PSR-18 HTTP client based on cURL that supports actual streaming",
"type": "library",
"require": {
"psr/http-client": "^1.0",
"psr/http-message": "^1.1 || ^2.0",
"psr/http-factory": "^1.1",
"ext-curl": "*",
"php": ">=8.3.0"
},
"provide": {
"psr/http-client-implementation": "1.0",
"psr/http-factory-implementation": "1.1",
"psr/http-message-implementation": "2.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Aternos\\CurlPsr\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Kurt Thiemann",
"email": "[email protected]"
}
],
"require-dev": {
"phpunit/phpunit": "^11.4"
},
"scripts": {
"test": "phpunit --config phpunit.xml --testdox"
}
}