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

49 lines
1.1 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"
2017-05-22 10:27:34 +02:00
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
2016-08-10 23:48:42 +02:00
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
2017-05-04 23:30:24 +02:00
"amphp/amp": "^2.0"
2016-08-10 23:48:42 +02:00
},
"require-dev": {
"amphp/phpunit-util": "dev-master",
"phpunit/phpunit": "^6",
"friendsofphp/php-cs-fixer": "^2.3"
2016-08-10 23:48:42 +02:00
},
"autoload": {
"psr-4": {
"Amp\\ByteStream\\": "lib/"
2016-08-10 23:48:42 +02:00
},
"files": [
2017-05-04 23:30:24 +02:00
"lib/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
}
}
}