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

79 lines
1.8 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": {
"php": ">=7.1",
"amphp/amp": "^2.2",
"amphp/byte-stream": "^1.6.1",
2020-05-02 11:14:21 +02:00
"amphp/parallel": "^1.2",
"amphp/sync": "^1.3"
2015-07-11 03:59:39 +02:00
},
"require-dev": {
2020-02-21 20:05:03 +01:00
"ext-eio": "^2",
"ext-uv": "^0.3 || ^0.2",
"amphp/phpunit-util": "^1.1",
"phpunit/phpunit": "^8 || ^7",
"amphp/php-cs-fixer-config": "dev-master"
2015-07-11 03:59:39 +02:00
},
"autoload": {
"psr-4": {
2019-09-14 05:04:47 +02:00
"Amp\\File\\": "src"
2015-07-11 03:59:39 +02:00
},
2019-09-14 05:04:47 +02:00
"files": ["src/functions.php"]
2015-07-11 03:59:39 +02:00
},
"autoload-dev": {
"psr-4": {
2020-05-02 11:14:21 +02:00
"Amp\\File\\Test\\": "test",
"Amp\\Sync\\Test\\": "vendor/amphp/sync/test"
}
},
"config": {
"preferred-install": {
"amphp/sync": "source"
2015-07-11 03:59:39 +02:00
}
},
2020-04-30 18:09:02 +02:00
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"scripts": {
"check": [
"@code-style",
"@test"
],
"code-style": "php-cs-fixer fix -v --diff",
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit --coverage-text"
2015-07-11 03:59:39 +02:00
}
}