1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "name": "hyperf/http-server",
- "description": "A HTTP Server for Hyperf.",
- "license": "MIT",
- "keywords": [
- "php",
- "swoole",
- "hyperf",
- "http",
- "http-server"
- ],
- "homepage": "https://hyperf.io",
- "support": {
- "docs": "https://hyperf.wiki",
- "issues": "https://github.com/hyperf/hyperf/issues",
- "pull-request": "https://github.com/hyperf/hyperf/pulls",
- "source": "https://github.com/hyperf/hyperf"
- },
- "require": {
- "php": ">=7.2",
- "hyperf/contract": "~2.2.0",
- "hyperf/dispatcher": "~2.2.0",
- "hyperf/event": "~2.2.0",
- "hyperf/exception-handler": "~2.2.0",
- "hyperf/http-message": "~2.2.0",
- "hyperf/macroable": "~2.2.0",
- "hyperf/server": "~2.2.0",
- "hyperf/utils": "~2.2.0",
- "nikic/fast-route": "^1.3",
- "psr/container": "^1.0|^2.0"
- },
- "suggest": {
- "hyperf/di": "Required to use annotations."
- },
- "autoload": {
- "psr-4": {
- "Hyperf\\HttpServer\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "HyperfTest\\HttpServer\\": "tests/"
- }
- },
- "config": {
- "sort-packages": true
- },
- "extra": {
- "branch-alias": {
- "dev-master": "2.2-dev"
- },
- "hyperf": {
- "config": "Hyperf\\HttpServer\\ConfigProvider"
- }
- }
- }
|