mirror of
https://github.com/danog/file.git
synced 2024-11-26 20:04:51 +01:00
49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"name": "amphp/filesystem",
|
|
"homepage": "https://github.com/amphp/filesystem",
|
|
"description": "An async filesystem library built on the amp concurrency framework",
|
|
"support": {
|
|
"issues": "https://github.com/amphp/filesystem/issues"
|
|
},
|
|
"keywords": [
|
|
"filesystem",
|
|
"static",
|
|
"async",
|
|
"non-blocking",
|
|
"amp",
|
|
"amphp"
|
|
],
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Daniel Lowrey",
|
|
"email": "rdlowrey@php.net"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=5.5",
|
|
"amphp/amp": "^1"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "~4.4.0",
|
|
"fabpot/php-cs-fixer": "~1.9",
|
|
"satooshi/php-coveralls": "dev-master"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Amp\\Filesystem\\": "lib"
|
|
},
|
|
"files": ["lib/functions.php"]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Amp\\Filesystem\\Test\\": "test/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "0.1.0-dev"
|
|
}
|
|
}
|
|
}
|