1
0
mirror of https://github.com/danog/byte-stream.git synced 2024-11-27 04:14:49 +01:00
byte-stream/composer.json
2016-08-15 17:19:32 -05:00

43 lines
976 B
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/loop": "dev-master",
"phpunit/phpunit": "^5",
"friendsofphp/php-cs-fixer": "~1.9"
},
"autoload": {
"psr-4": {
"Amp\\Stream\\": "lib/"
},
"files": ["lib/functions.php"]
},
"autoload-dev": {
"psr-4": {
"Amp\\Stream\\Test\\": "test/"
}
}
}