1
0
mirror of https://github.com/danog/file.git synced 2024-11-26 20:04:51 +01:00
file/composer.json
Aaron Piotrowski 1f264d949e Revert "Use byte-stream package"
This reverts commit ffde7791d7.

Oops… wrong branch.
2017-05-12 10:12:44 -05:00

58 lines
1.3 KiB
JSON

{
"name": "amphp/file",
"homepage": "https://github.com/amphp/file",
"description": "An async filesystem library built on the amp concurrency framework",
"support": {
"issues": "https://github.com/amphp/file/issues"
},
"keywords": [
"file",
"disk",
"static",
"async",
"non-blocking",
"amp",
"amphp"
],
"license": "MIT",
"authors": [
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net"
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
}
],
"require": {
"amphp/amp": "dev-master as 2.0"
},
"minimum-stability": "dev",
"require-dev": {
"amphp/parallel": "dev-master as 0.1",
"phpunit/phpunit": "^5.0",
"friendsofphp/php-cs-fixer": "~1.9"
},
"suggest": {
"amphp/parallel": "Provides async file access without the eio or uv extension."
},
"autoload": {
"psr-4": {
"Amp\\File\\": "lib"
},
"files": ["lib/functions.php"]
},
"autoload-dev": {
"psr-4": {
"Amp\\File\\Test\\": "test/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.0-dev",
"dev-amp_v2": "0.2.0-dev"
}
}
}