{
    "name": "rbdwllr/reallysimplejwt",
    "type": "library",
    "description": "A really simple library to generate user authentication JSON Web Tokens.",
    "keywords": ["jwt", "json", "tokens", "authentication", "json web tokens", "php"],
    "license": "MIT",
    "authors": [
        {
            "name": "Rob Waller",
            "email": "rdwaller1984@gmail.com"
        }
    ],
    "require": {
        "php": ">=7.4.0"
    },
    "require-dev": {
    	"phpunit/phpunit": "^9.5",
        "phpstan/phpstan": "^0.12",
        "phpmd/phpmd": "^2.9",
        "squizlabs/php_codesniffer": "^3.5",
        "infection/infection": "^0.20",
        "phploc/phploc": "^7.0",
        "sebastian/phpcpd": "^6.0",
        "phpbench/phpbench": "^1.0"
    },
    "autoload": {
        "psr-4": {
            "ReallySimpleJWT\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "Tests\\": "tests/",
            "Benchmarks\\": "benchmarks/"
        }
    },
    "scripts" : {
        "pipeline": [
            "vendor/bin/phpcs --standard=psr12 src/ tests/ benchmarks/",
            "vendor/bin/phpstan analyse -l 8 src/ tests/ benchmarks/",
            "vendor/bin/phpmd src/ text ruleset.xml",
            "vendor/bin/phpunit --testsuite unit --coverage-clover=coverage.xml",
            "vendor/bin/phpunit --testsuite integration",
            "vendor/bin/infection --test-framework-options='--testsuite unit' -s --min-msi=93 --threads=2",
            "vendor/bin/phpcpd --min-lines=2 --min-tokens=35 src/",
            "vendor/bin/phpbench run benchmarks/ReallySimpleJWTBench.php --report=aggregate",
            "vendor/bin/phploc src/"
        ]
    }
}
