| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- {
- "name": "96qbhy/hyperf-auth",
- "description": "hyperf 的 auth 组件",
- "type": "library",
- "license": "MIT",
- "keywords": [
- "php",
- "hyperf",
- "hyperf-auth",
- "jwt-auth"
- ],
- "autoload": {
- "psr-4": {
- "Qbhy\\HyperfAuth\\": "src/"
- },
- "files": [
- "src/helper.php"
- ]
- },
- "autoload-dev": {
- "psr-4": {
- "HyperfTest\\": "tests"
- }
- },
- "require": {
- "php": ">=8.1",
- "96qbhy/simple-jwt": "^v1.5",
- "hyperf/cache": "^3.1",
- "hyperf/di": "^3.1",
- "ext-json": "*",
- "ext-redis": "*"
- },
- "suggest": {
- "ext-redis": "*"
- },
- "require-dev": {
- "brainmaestro/composer-git-hooks": "^2.8",
- "friendsofphp/php-cs-fixer": "^2.14",
- "hyperf/command": "^3.1",
- "hyperf/config": "^3.1",
- "hyperf/database": "^3.1",
- "hyperf/event": "^3.1",
- "hyperf/framework": "^3.1",
- "hyperf/redis": "^3.1",
- "hyperf/session": "^3.1",
- "hyperf/testing": "^3.1",
- "hyperf/utils": "^3.1",
- "itsgoingd/clockwork": "^5.0",
- "phpstan/phpstan": "^0.12",
- "swoft/swoole-ide-helper": "dev-master",
- "symfony/console": "^5.3",
- "symfony/var-dumper": "^5.3"
- },
- "minimum-stability": "dev",
- "config": {
- "sort-packages": true
- },
- "scripts": {
- "test": "phpunit -c phpunit.xml --colors=always",
- "analyse": "phpstan analyse --memory-limit 300M -l 0 ./src",
- "cs-fix": "php-cs-fixer fix $1",
- "post-install-cmd": "cghooks add --ignore-lock",
- "post-update-cmd": "cghooks update"
- },
- "extra": {
- "hyperf": {
- "config": "Qbhy\\HyperfAuth\\ConfigProvider"
- },
- "hooks": {
- "pre-commit": [
- "echo committing as $(git config user.name)",
- "vendor/bin/php-cs-fixer fix .",
- "git add .",
- "composer test"
- ]
- }
- },
- "repositories": {
- "packagist": {
- "type": "composer",
- "url": "https://mirrors.aliyun.com/composer/"
- }
- }
- }
|