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

66 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2016-08-10 23:48:42 +02:00
{
2017-04-24 21:18:08 +02:00
"name": "amphp/byte-stream",
"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": {
"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",
"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": {
"amphp/amp": "^2"
2016-08-10 23:48:42 +02:00
},
"require-dev": {
"amphp/phpunit-util": "^1",
"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": {
"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
}
},
"config": {
"platform": {
"php": "7.0.0"
}
},
"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
}
}