-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
54 lines (54 loc) · 1.22 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "amphp/artax",
"homepage": "https://github.com/amphp/artax",
"description": "Asynchronous parallel HTTP/1.1 client built on the Amp concurrency framework",
"keywords": [
"http",
"rest",
"client",
"parallel",
"async",
"non-blocking"
],
"license": "MIT",
"authors": [
{
"name": "Daniel Lowrey",
"email": "[email protected]"
},
{
"name": "Niklas Keller",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"amphp/amp": "^2",
"amphp/byte-stream": "^1.1.6",
"amphp/socket": "^0.10.5",
"amphp/uri": "^0.1",
"amphp/file": "^0.2 || ^0.3",
"kelunik/certificate": "^1.1"
},
"require-dev": {
"amphp/phpunit-util": "^1",
"phpunit/phpunit": "^6",
"friendsofphp/php-cs-fixer": "^2.3",
"amphp/http-server": "^1"
},
"autoload": {
"psr-4": {
"Amp\\Artax\\": "lib"
}
},
"autoload-dev": {
"psr-4": {
"Amp\\Test\\Artax\\": "test"
}
},
"config": {
"platform": {
"php": "7.0.0"
}
}
}