mirror of
https://github.com/danog/byte-stream.git
synced 2024-11-27 04:14:49 +01:00
46 lines
1.0 KiB
JSON
46 lines
1.0 KiB
JSON
{
|
|
"name": "amphp/stream",
|
|
"homepage": "https://github.com/amphp/stream",
|
|
"description": "Async streams for the amp concurrency framework",
|
|
"support": {
|
|
"issues": "https://github.com/amphp/stream/issues"
|
|
},
|
|
"keywords": [
|
|
"stream",
|
|
"async",
|
|
"non-blocking",
|
|
"amp"
|
|
],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Aaron Piotrowski",
|
|
"email": "aaron@trowski.com"
|
|
}
|
|
],
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"require": {
|
|
"amphp/amp": "dev-master as 2.0"
|
|
},
|
|
"require-dev": {
|
|
"amphp/phpunit-util": "dev-master",
|
|
"phpunit/phpunit": "^6",
|
|
"friendsofphp/php-cs-fixer": "~1.9"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Amp\\ByteStream\\": "lib/"
|
|
},
|
|
"files": [
|
|
"lib/functions.php",
|
|
"lib/Internal/functions.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Amp\\ByteStream\\Test\\": "test/"
|
|
}
|
|
}
|
|
}
|