加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
composer.json 4.95 KB
一键复制 编辑 原始数据 按行查看 历史
不败少龙 提交于 2024-12-09 17:55 . jt808数据解析
{
"name": "hyperf/hyperf-skeleton",
"type": "project",
"keywords": [
"php",
"swoole",
"framework",
"hyperf",
"microservice",
"middleware"
],
"description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
"license": "Apache-2.0",
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-redis": "*",
"96qbhy/hyperf-auth": "^3.1",
"aldas/modbus-tcp-client": "^3.5",
"doctrine/dbal": "^4.2",
"ella123/hyperf-captcha": "dev-master",
"firstphp/ip2region": "^1.1",
"hg/apidoc": "^5.2",
"hyperf/amqp": "~3.1.0",
"hyperf/async-queue": "^3.1",
"hyperf/cache": "^3.1",
"hyperf/circuit-breaker": "^3.1",
"hyperf/command": "^3.1",
"hyperf/config": "~3.1.0",
"hyperf/config-center": "^3.1",
"hyperf/config-nacos": "^3.1",
"hyperf/config-zookeeper": "^3.1",
"hyperf/constants": "~3.1.0",
"hyperf/consul": "^3.1",
"hyperf/crontab": "^3.1",
"hyperf/database": "^3.1",
"hyperf/database-pgsql": "^3.1",
"hyperf/database-sqlite": "^3.1",
"hyperf/database-sqlserver-incubator": "^0.1.1",
"hyperf/db": "^3.1",
"hyperf/db-connection": "^3.1",
"hyperf/di": "^3.1",
"hyperf/elasticsearch": "~3.1.0",
"hyperf/engine": "^2.10",
"hyperf/etcd": "^3.1",
"hyperf/event": "^3.1",
"hyperf/filesystem": "^3.1",
"hyperf/flysystem-oss": "^1.4",
"hyperf/framework": "~3.1.0",
"hyperf/grpc": "3.1.*",
"hyperf/guzzle": "~3.1.0",
"hyperf/http-message": "^3.1",
"hyperf/http-server": "~3.1.0",
"hyperf/http2-client": "3.1.*",
"hyperf/json-rpc": "^3.1",
"hyperf/kafka": "^3.1",
"hyperf/logger": "^3.1",
"hyperf/memory": "~3.1.0",
"hyperf/model-cache": "~3.1.0",
"hyperf/model-listener": "^3.1",
"hyperf/paginator": "^3.1",
"hyperf/phar": "^3.1",
"hyperf/pool": "^3.1",
"hyperf/process": "~3.1.0",
"hyperf/rate-limit": "^3.1",
"hyperf/redis": "~3.1.0",
"hyperf/resource": "^3.1",
"hyperf/resource-grpc": "^3.1",
"hyperf/retry": "^3.1",
"hyperf/rpc": "~3.1.0",
"hyperf/rpc-client": "~3.1.0",
"hyperf/rpc-multiplex": "^3.1",
"hyperf/rpc-server": "~3.1.0",
"hyperf/service-governance": "^3.1",
"hyperf/service-governance-consul": "^3.1",
"hyperf/service-governance-nacos": "^3.1",
"hyperf/session": "^3.1",
"hyperf/signal": "^3.1",
"hyperf/snowflake": "^3.1",
"hyperf/socketio-server": "^3.1",
"hyperf/task": "^3.1",
"hyperf/tracer": "^3.1",
"hyperf/translation": "^3.1",
"hyperf/utils": "^3.1",
"hyperf/validation": "^3.1",
"hyperf/view": "^3.1",
"hyperf/view-engine": "^3.1",
"hyperf/websocket-client": "^3.1",
"hyperf/websocket-server": "^3.1",
"jaeger/querylist": "^4.4",
"jonahgeorge/jaeger-client-php": "^1.5",
"jundayw/jtt-808-php-sdk": "^0.0.1",
"league/plates": "^3.5",
"sy-records/think-template": "^2.0",
"twig/twig": "^3.14",
"vinchan/message-notify": "^2.0",
"yansongda/hyperf-pay": "^1.6",
"yurunsoft/pay-sdk": "^3.1"
},
"require-dev": {
"filp/whoops": "^2.16",
"friendsofphp/php-cs-fixer": "^3.0",
"hyperf/devtool": "^3.1",
"hyperf/testing": "~3.1.0",
"mockery/mockery": "^1.0",
"phpstan/phpstan": "^1.0",
"swoole/ide-helper": "^5.0"
},
"suggest": {
"ext-openssl": "Required to use HTTPS.",
"ext-json": "Required to use JSON.",
"ext-pdo_mysql": "Required to use MySQL Client.",
"ext-redis": "Required to use Redis Client."
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"app/Utils/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"HyperfTest\\": "./test/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform-check": false
},
"extra": [],
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-autoload-dump": [
],
"test": "co-phpunit --prepend test/bootstrap.php --colors=always",
"cs-fix": "php-cs-fixer fix $1",
"analyse": "phpstan analyse --memory-limit 300M",
"start": [
"Composer\\Config::disableProcessTimeout",
"php ./bin/hyperf.php start"
]
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化