1
0
mirror of https://github.com/danog/byte-stream.git synced 2024-11-26 20:04:51 +01:00
byte-stream/composer.json

46 lines
1.0 KiB
JSON
Raw Normal View History

2016-08-10 23:48:42 +02:00
{
2017-04-24 21:18:08 +02:00
"name": "amphp/byte-stream",
"homepage": "https://github.com/amphp/byte-stream",
2016-08-10 23:48:42 +02:00
"description": "Async streams for the amp concurrency framework",
"support": {
2017-04-24 21:18:08 +02:00
"issues": "https://github.com/amphp/byte-stream/issues"
2016-08-10 23:48:42 +02:00
},
"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",
2016-08-10 23:48:42 +02:00
"friendsofphp/php-cs-fixer": "~1.9"
},
"autoload": {
"psr-4": {
"Amp\\ByteStream\\": "lib/"
2016-08-10 23:48:42 +02:00
},
"files": [
"lib/functions.php",
"lib/Internal/functions.php"
]
2016-08-10 23:48:42 +02:00
},
"autoload-dev": {
"psr-4": {
"Amp\\ByteStream\\Test\\": "test/"
2016-08-10 23:48:42 +02:00
}
}
}