{
    "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.5.2",
        "amphp/byte-stream": "^1.8.1",
        "amphp/parallel": "^1.4",
        "amphp/sync": "^1.4"
    },
    "require-dev": {
        "ext-eio": "^2 || ^3",
        "ext-uv": "^0.3 || ^0.2",
        "amphp/phpunit-util": "^1.1",
        "phpunit/phpunit": "^9 || ^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": "2.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"
    }
}
