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

79 lines
1.8 KiB
JSON

{
"name": "amphp/file",
"homepage": "https://github.com/amphp/file",
"description": "Allows non-blocking access to the filesystem for Amp.",
"support": {
"issues": "https://github.com/amphp/file/issues"
},
"keywords": [
"file",
"disk",
"static",
"async",
"non-blocking",
"amp",
"amphp",
"io",
"filesystem"
],
"license": "MIT",
"authors": [
{
"name": "Daniel Lowrey",
"email": "rdlowrey@php.net"
},
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
},
{
"name": "Niklas Keller",
"email": "me@kelunik.com"
}
],
"require": {
"php": ">=7.1",
"amphp/amp": "^2.2",
"amphp/byte-stream": "^1.6.1",
"amphp/parallel": "^1.2",
"amphp/sync": "^1.3"
},
"require-dev": {
"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"
},
"autoload": {
"psr-4": {
"Amp\\File\\": "src"
},
"files": ["src/functions.php"]
},
"autoload-dev": {
"psr-4": {
"Amp\\File\\Test\\": "test",
"Amp\\Sync\\Test\\": "vendor/amphp/sync/test"
}
},
"config": {
"preferred-install": {
"amphp/sync": "source"
}
},
"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"
}
}