2016-08-10 23:48:42 +02:00
|
|
|
{
|
2017-04-24 21:18:08 +02:00
|
|
|
"name": "amphp/byte-stream",
|
2017-06-15 17:58:59 +02:00
|
|
|
"homepage": "http://amphp.org/byte-stream",
|
2017-05-22 10:28:56 +02:00
|
|
|
"description": "A stream abstraction to make working with non-blocking I/O simple.",
|
2016-08-10 23:48:42 +02:00
|
|
|
"support": {
|
2017-06-15 17:58:59 +02:00
|
|
|
"issues": "https://github.com/amphp/byte-stream/issues",
|
|
|
|
"irc": "irc://irc.freenode.org/amphp"
|
2016-08-10 23:48:42 +02:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"stream",
|
|
|
|
"async",
|
|
|
|
"non-blocking",
|
2017-06-15 17:58:59 +02:00
|
|
|
"amp",
|
|
|
|
"amphp",
|
|
|
|
"io"
|
2016-08-10 23:48:42 +02:00
|
|
|
],
|
|
|
|
"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
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2017-06-15 17:58:59 +02:00
|
|
|
"amphp/amp": "^2"
|
2016-08-10 23:48:42 +02:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2017-06-15 17:58:59 +02:00
|
|
|
"amphp/phpunit-util": "^1",
|
2017-04-14 01:31:40 +02:00
|
|
|
"phpunit/phpunit": "^6",
|
2018-09-21 22:45:13 +02:00
|
|
|
"friendsofphp/php-cs-fixer": "^2.3",
|
2018-09-23 21:30:08 +02:00
|
|
|
"amphp/php-cs-fixer-config": "dev-master",
|
|
|
|
"infection/infection": "^0.9.3"
|
2016-08-10 23:48:42 +02:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
2017-06-15 17:58:59 +02:00
|
|
|
"Amp\\ByteStream\\": "lib"
|
2016-08-10 23:48:42 +02:00
|
|
|
},
|
2017-01-09 17:53:36 +01:00
|
|
|
"files": [
|
2017-05-04 23:30:24 +02:00
|
|
|
"lib/functions.php"
|
2017-01-09 17:53:36 +01:00
|
|
|
]
|
2016-08-10 23:48:42 +02:00
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
2017-06-15 17:58:59 +02:00
|
|
|
"Amp\\ByteStream\\Test\\": "test"
|
2016-08-10 23:48:42 +02:00
|
|
|
}
|
2017-12-03 03:32:00 +01:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"platform": {
|
|
|
|
"php": "7.0.0"
|
|
|
|
}
|
2019-07-15 16:16:07 +02:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"check": [
|
|
|
|
"@cs",
|
|
|
|
"@test"
|
|
|
|
],
|
|
|
|
"cs": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix -v --diff --dry-run",
|
|
|
|
"cs-fix": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix -v --diff",
|
|
|
|
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit --coverage-text"
|
2016-08-10 23:48:42 +02:00
|
|
|
}
|
|
|
|
}
|