{
    "name": "genkgo/camt",
    "description": "Library to read CAMT files (XML containing bank statements).",
    "license": "MIT",
    "scripts": {
        "check": [
            "php-cs-fixer fix --ansi --dry-run --diff",
            "phpunit --color=always",
            "phpstan analyse --ansi"
        ],
        "fix": [
            "php-cs-fixer fix --ansi"
        ]
    },
    "require": {
        "php": "^8.1",
        "ext-dom": "*",
        "ext-libxml": "*",
        "ext-simplexml": "*",
        "moneyphp/money": "^4.6",
        "jschaedl/iban-validation": "^2.5"
    },
    "autoload": {
        "psr-4": {
            "Genkgo\\Camt\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Genkgo\\TestCamt\\": "test"
        }
    },
    "require-dev": {
        "friendsofphp/php-cs-fixer": "@stable",
        "phpstan/phpstan": "@stable",
        "phpunit/phpunit": "@stable"
    }
}
