forked from guzzle/RingPHP
-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
46 lines (46 loc) · 1.07 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
{
"name": "ezimuel/ringphp",
"description": "Fork of guzzle/RingPHP (abandoned) to be used with elasticsearch-php",
"license": "MIT",
"authors": [
{
"name": "Michael Dowling",
"email": "[email protected]",
"homepage": "https://github.com/mtdowling"
}
],
"require": {
"php": ">=5.4.0",
"ezimuel/guzzlestreams": "^3.0.1",
"react/promise": "~2.0"
},
"require-dev": {
"ext-curl": "*",
"phpunit/phpunit": "~9.0"
},
"replace": {
"guzzlehttp/ringphp": "self.version"
},
"suggest": {
"ext-curl": "Guzzle will use specific adapters if cURL is present"
},
"autoload": {
"psr-4": {
"GuzzleHttp\\Ring\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GuzzleHttp\\Tests\\Ring\\": "tests/"
}
},
"scripts": {
"test": "make test",
"test-ci": "make coverage"
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}