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

46 lines
977 B
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"
},
"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"
}
}
}