123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- "name": "hyperf/dispatcher",
- "description": "A HTTP Server for Hyperf.",
- "license": "MIT",
- "keywords": [
- "php",
- "swoole",
- "hyperf",
- "dispatcher",
- "middleware",
- "filter"
- ],
- "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",
- "psr/container": "^1.0|^2.0",
- "psr/http-server-middleware": "^1.0",
- "psr/http-message": "^1.0",
- "hyperf/contract": "~2.2.0"
- },
- "autoload": {
- "psr-4": {
- "Hyperf\\Dispatcher\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "HyperfTest\\Dispatcher\\": "tests/"
- }
- },
- "config": {
- "sort-packages": true
- },
- "extra": {
- "branch-alias": {
- "dev-master": "2.2-dev"
- },
- "hyperf": {
- "config": "Hyperf\\Dispatcher\\ConfigProvider"
- }
- }
- }
|