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

59 lines
1.4 KiB
JSON
Raw Normal View History

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"
2016-08-30 21:05:14 +02:00
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
2015-07-11 03:59:39 +02:00
}
],
"require": {
2017-05-12 22:43:23 +02:00
"amphp/amp": "^2.0",
"amphp/byte-stream": "dev-master as 0.1"
2015-07-11 03:59:39 +02:00
},
2016-07-21 01:33:03 +02:00
"minimum-stability": "dev",
2015-07-11 03:59:39 +02:00
"require-dev": {
2016-08-30 21:05:14 +02:00
"amphp/parallel": "dev-master as 0.1",
"phpunit/phpunit": "^5.0",
"friendsofphp/php-cs-fixer": "~1.9"
2015-07-11 03:59:39 +02:00
},
2016-08-30 21:05:14 +02:00
"suggest": {
"amphp/parallel": "Provides async file access without the eio or uv extension."
},
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": {
2016-08-30 21:05:14 +02:00
"dev-master": "0.1.0-dev",
"dev-amp_v2": "0.2.0-dev"
2015-07-11 03:59:39 +02:00
}
}
}