{
    "name": "neos/eventstore",
    "description": "Store for Event-Sourced applications",
    "type": "library",
    "license": "MIT",
    "funding": [
        {
            "type": "other",
            "url": "https://www.neos.io/community/participate/supporting-neos.html"
        }
    ],
    "require": {
        "php": "^8.1",
        "webmozart/assert": "^1.10",
        "ramsey/uuid": "^4.3"
    },
    "require-dev": {
        "roave/security-advisories": "dev-latest",
        "phpstan/phpstan": "^1.10",
        "squizlabs/php_codesniffer": "^4.0.x-dev",
        "phpunit/phpunit": "^10"
    },
    "autoload": {
        "psr-4": {
            "Neos\\EventStore\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Neos\\EventStore\\Tests\\": "tests/"
        }
    },
    "scripts": {
        "test:phpstan": "phpstan",
        "test:cs": "phpcs --colors src",
        "test:cs:fix": "phpcbf --colors src",
        "test:unit": "phpunit tests/Unit",
        "test": [
            "@test:phpstan",
            "@test:cs",
            "@test:unit"
        ]
    }
}