{
    "name": "selective/xmldsig",
    "type": "library",
    "description": "Sign XML Documents with Digital Signatures",
    "keywords": [
        "xmldsig",
        "xml",
        "signatures",
        "verify"
    ],
    "homepage": "https://github.com/selective-php/xmldsig",
    "license": "MIT",
    "require": {
        "php": "^7.1.3",
        "ext-openssl": "*"
    },
    "require-dev": {
        "overtrue/phplint": "^1.1",
        "phpunit/phpunit": "^7",
        "phpstan/phpstan": "^0.12",
        "squizlabs/php_codesniffer": "^3.4"
    },
    "scripts": {
        "test": "phpunit --configuration phpunit.xml",
        "test-coverage": "phpunit --configuration phpunit.xml --coverage-clover build/logs/clover.xml --coverage-html build/coverage",
        "check-style": "phpcs --standard=phpcs.xml",
        "fix-style": "phpcbf --standard=phpcs.xml",
        "phpstan": "phpstan analyse src tests --level=max -c phpstan.neon --no-progress",
        "lint": "phplint ./ --exclude=vendor --no-interaction --no-cache",
        "install-cs": "php -r \"@mkdir('build'); copy('https://cs.symfony.com/download/php-cs-fixer-v2.phar', 'build/php-cs-fixer-v2.phar');\"",
        "fix-cs": "php build/php-cs-fixer-v2.phar fix --config=.cs.php",
        "check-cs": "php build/php-cs-fixer-v2.phar fix --dry-run --format=txt --verbose --diff --diff-format=udiff --config=.cs.php",
        "check-all": [
            "@lint",
            "@check-style",
            "@phpstan",
            "@test-coverage"
        ]
    },
    "autoload": {
        "psr-4": {
            "Selective\\XmlDSig\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Selective\\XmlDSig\\Test\\": "tests"
        }
    },
    "config": {
        "sort-packages": true,
        "process-timeout": 0
    }
}
