1
0
mirror of https://github.com/danog/byte-stream.git synced 2024-11-27 04:14:49 +01:00
byte-stream/composer.json
2017-05-22 10:28:56 +02:00

49 lines
1.1 KiB
JSON

{
"name": "amphp/byte-stream",
"homepage": "https://github.com/amphp/byte-stream",
"description": "A stream abstraction to make working with non-blocking I/O simple.",
"support": {
"issues": "https://github.com/amphp/byte-stream/issues"
},
"keywords": [
"stream",
"async",
"non-blocking",
"amp"
],
"license": "MIT",
"authors": [
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"amphp/amp": "^2.0"
},
"require-dev": {
"amphp/phpunit-util": "dev-master",
"phpunit/phpunit": "^6",
"friendsofphp/php-cs-fixer": "^2.3"
},
"autoload": {
"psr-4": {
"Amp\\ByteStream\\": "lib/"
},
"files": [
"lib/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Amp\\ByteStream\\Test\\": "test/"
}
}
}