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

50 lines
1.1 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"
}
],
"require": {
"amphp/amp": "dev-master as 2.0"
},
"minimum-stability": "dev",
"require-dev": {
"amphp/loop": "dev-master",
"phpunit/phpunit": "^5.0",
"friendsofphp/php-cs-fixer": "~1.9"
},
"autoload": {
"psr-4": {
"Amp\\File\\": "lib"
},
"files": ["lib/functions.php"]
},
"autoload-dev": {
"psr-4": {
"Amp\\File\\Test\\": "test/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.2.0-dev"
}
}
}