{
    "name": "lindelius/php-jwt",
    "description": "Convenience library for working with JSON Web Tokens (JWT) in PHP",
    "keywords": ["jwt", "json web token", "auth"],
    "homepage": "https://github.com/lindelius/php-jwt",
    "license": "Apache-2.0",
    "authors": [
        {
            "name": "Tom Lindelius",
            "homepage": "https://lindelius.com",
            "role": "Developer"
        }
    ],
    "require": {
        "php": "^7.2||^8.0",
        "ext-json": "*"
    },
    "require-dev": {
        "ext-openssl": "*",
        "phpbench/phpbench": "^0.17",
        "phpunit/phpunit": "^8.5"
    },
    "autoload": {
        "psr-4": {
            "Lindelius\\JWT\\": "src/"
        },
        "files": [
            "src/functions.php"
        ]
    },
    "autoload-dev": {
        "psr-4": {
            "Lindelius\\JWT\\Benchmarks\\": "benchmarks/",
            "Lindelius\\JWT\\Tests\\": "tests/"
        }
    },
    "config": {
        "platform": {
            "php": "7.2"
        }
    }
}
