-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1008 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 1008 Bytes
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": "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.5",
"ext-uri": "*"
},
"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": "kurt@aternos.org"
}
],
"require-dev": {
"phpunit/phpunit": "^11.4"
},
"scripts": {
"test": "phpunit --config phpunit.xml --testdox"
}
}