forked from guzzle/streams
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 836 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 836 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
{
"name": "ezimuel/guzzlestreams",
"description": "Fork of guzzle/streams (abandoned) to be used with elasticsearch-php",
"homepage": "http://guzzlephp.org/",
"keywords": ["stream", "guzzle"],
"license": "MIT",
"authors": [
{
"name": "Michael Dowling",
"email": "mtdowling@gmail.com",
"homepage": "https://github.com/mtdowling"
}
],
"require": {
"php": ">=7.4.0"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"phpstan/phpstan": "^2.1"
},
"autoload": {
"psr-4": { "GuzzleHttp\\Stream\\": "src/" }
},
"scripts": {
"test": "make test",
"phpstan": "vendor/bin/phpstan analyse src"
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}