{ "name": "96qbhy/simple-jwt", "description": "简单的 jwt 实现", "authors": [ { "name": "96qbhy", "email": "96qbhy@gmail.com" } ], "autoload": { "psr-4": { "Qbhy\\SimpleJwt\\": "src/" } }, "autoload-dev": { "psr-4": { "Qbhy\\SimpleJwt\\Tests\\": "tests/" } }, "require": { "php": ">=8.1", "ext-json": ">=1.0", "doctrine/cache": "^1.10" }, "license": "Apache-2.0", "require-dev": { "phpunit/phpunit": "^10.0.0", "friendsofphp/php-cs-fixer": "^3.0", "brainmaestro/composer-git-hooks": "^2.8", "hyperf/context": "~3.1.0", "hyperf/config": "^3.1" }, "extra": { "hooks": { "pre-commit": [ "echo committing as $(git config user.name)", "vendor/bin/php-cs-fixer fix .", "git add .", "composer test" ] }, "hyperf": { "config": "Qbhy\\SimpleJwt\\Hyperf\\ConfigProvider" }, "laravel": { "providers": [ "Qbhy\\SimpleJwt\\Laravel\\ServiceProvider" ] } }, "scripts": { "test": "vendor/bin/phpunit", "post-install-cmd": "cghooks add --ignore-lock", "post-update-cmd": "cghooks update" } }