{
    "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.1.0"
    },
    "require-dev": {
    	"phpunit/phpunit": "^7.0",
        "phpstan/phpstan": "^0.10",
        "phpmd/phpmd": "2.6.*",
        "squizlabs/php_codesniffer": "^3.0",
        "infection/infection": "^0.12.2",
        "phploc/phploc": "^4.0",
        "sebastian/phpcpd": "^4.0"
    },
    "autoload": {
        "psr-4": {
            "ReallySimpleJWT\\": "src",
            "Tests\\": "tests"
        }
    },
    "scripts" : {
        "pipeline": [
            "vendor/bin/phpcs --standard=psr12 src tests",
            "vendor/bin/phpstan analyse -l 7 src tests",
            "vendor/bin/phpmd src text ruleset.xml",
            "vendor/bin/phpunit --coverage-clover=coverage.xml",
            "vendor/bin/infection -s --min-msi=90",
            "vendor/bin/phpcpd --min-lines=2 --min-tokens=35 src",
            "vendor/bin/phploc src"
        ]
    }
}
