| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 | {    "name": "lcobucci/jwt",    "description": "A simple library to work with JSON Web Token and JSON Web Signature",    "license": [        "BSD-3-Clause"    ],    "type": "library",    "keywords": [        "JWT",        "JWS"    ],    "authors": [        {            "name": "Luís Cobucci",            "email": "lcobucci@gmail.com",            "role": "Developer"        }    ],    "require": {        "php": "^7.4 || ^8.0",        "ext-hash": "*",        "ext-json": "*",        "ext-mbstring": "*",        "ext-openssl": "*",        "ext-sodium": "*",        "lcobucci/clock": "^2.0 || ^3.0"    },    "require-dev": {        "infection/infection": "^0.21",        "lcobucci/coding-standard": "^6.0",        "mikey179/vfsstream": "^1.6.7",        "phpbench/phpbench": "^1.2",        "phpstan/extension-installer": "^1.0",        "phpstan/phpstan": "^1.4",        "phpstan/phpstan-deprecation-rules": "^1.0",        "phpstan/phpstan-phpunit": "^1.0",        "phpstan/phpstan-strict-rules": "^1.0",        "phpunit/php-invoker": "^3.1",        "phpunit/phpunit": "^9.5"    },    "autoload": {        "psr-4": {            "Lcobucci\\JWT\\": "src"        }    },    "autoload-dev": {        "psr-4": {            "Lcobucci\\JWT\\": [                "test/_keys",                "test/unit",                "test/performance"            ],            "Lcobucci\\JWT\\FunctionalTests\\": "test/functional"        }    },    "config": {        "allow-plugins": {            "dealerdirect/phpcodesniffer-composer-installer": true,            "phpstan/extension-installer": true,            "infection/extension-installer": true,            "ocramius/package-versions": true        },        "preferred-install": "dist",        "sort-packages": true    }}
 |