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

61 lines
1.3 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",
2017-06-21 20:11:53 +02:00
"description": "Allows non-blocking access to the filesystem for Amp.",
2015-08-01 03:04:58 +02:00
"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",
2017-06-15 19:48:45 +02:00
"amphp",
"io",
"filesystem"
2015-07-11 03:59:39 +02:00
],
"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"
2017-06-21 20:11:53 +02:00
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
2015-07-11 03:59:39 +02:00
}
],
"require": {
2017-06-15 19:48:45 +02:00
"amphp/amp": "^2",
"amphp/byte-stream": "^1",
2017-12-15 05:36:16 +01:00
"amphp/parallel": "^0.2"
2015-07-11 03:59:39 +02:00
},
"require-dev": {
2017-06-15 19:48:45 +02:00
"amphp/phpunit-util": "^1",
"phpunit/phpunit": "^6",
2017-05-18 05:58:39 +02:00
"friendsofphp/php-cs-fixer": "^2.3"
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": {
2017-06-15 19:48:45 +02:00
"Amp\\File\\Test\\": "test"
2015-07-11 03:59:39 +02:00
}
},
"config": {
"platform": {
"php": "7.0.0"
}
2015-07-11 03:59:39 +02:00
}
}