1
0
mirror of https://github.com/danog/file.git synced 2024-11-29 20:09:10 +01:00
file/composer.json
2015-07-19 12:37:10 -04:00

47 lines
1.0 KiB
JSON

{
"name": "amphp/fs",
"homepage": "https://github.com/amphp/fs",
"description": "Non-blocking filesystem tools for amp applications",
"keywords": [
"filesystem",
"static",
"async",
"non-blocking",
"amp",
"amphp"
],
"license": "MIT",
"authors": [
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net",
"role": "Creator / Lead Developer"
}
],
"require": {
"php": ">=5.5",
"amphp/amp": "1.0.x-dev"
},
"require-dev": {
"phpunit/phpunit": "~4.4.0",
"fabpot/php-cs-fixer": "~1.9",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
"Amp\\Fs\\": "lib"
},
"files": ["lib/functions.php"]
},
"autoload-dev": {
"psr-4": {
"Amp\\Fs\\Test\\": "test/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.0-dev"
}
}
}