2015-07-11 03:59:39 +02:00
|
|
|
{
|
2015-08-05 16:55:56 +02:00
|
|
|
"name": "amphp/file",
|
|
|
|
"homepage": "https://github.com/amphp/file",
|
2015-08-01 03:04:58 +02:00
|
|
|
"description": "An async filesystem library built on the amp concurrency framework",
|
|
|
|
"support": {
|
2015-08-05 16:55:56 +02:00
|
|
|
"issues": "https://github.com/amphp/file/issues"
|
2015-08-01 03:04:58 +02:00
|
|
|
},
|
2015-07-11 03:59:39 +02:00
|
|
|
"keywords": [
|
2015-08-05 16:55:56 +02:00
|
|
|
"file",
|
|
|
|
"disk",
|
2015-07-11 03:59:39 +02:00
|
|
|
"static",
|
|
|
|
"async",
|
|
|
|
"non-blocking",
|
|
|
|
"amp",
|
|
|
|
"amphp"
|
|
|
|
],
|
|
|
|
"license": "MIT",
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Daniel Lowrey",
|
2015-07-30 16:10:53 +02:00
|
|
|
"email": "rdlowrey@php.net"
|
2015-07-11 03:59:39 +02:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2015-07-17 16:27:38 +02:00
|
|
|
"php": ">=5.5",
|
2015-07-28 14:27:23 +02:00
|
|
|
"amphp/amp": "^1"
|
2015-07-11 03:59:39 +02:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2015-07-28 15:54:52 +02:00
|
|
|
"phpunit/phpunit": "~4.4.0",
|
2015-08-02 22:05:03 +02:00
|
|
|
"fabpot/php-cs-fixer": "~1.9"
|
2015-07-11 03:59:39 +02:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
2015-08-05 16:55:56 +02:00
|
|
|
"Amp\\File\\": "lib"
|
2015-07-11 03:59:39 +02:00
|
|
|
},
|
|
|
|
"files": ["lib/functions.php"]
|
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
2015-08-05 16:55:56 +02:00
|
|
|
"Amp\\File\\Test\\": "test/"
|
2015-07-11 03:59:39 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"extra": {
|
|
|
|
"branch-alias": {
|
|
|
|
"dev-master": "0.1.0-dev"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|