1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "name": "hyperf/command",
- "type": "library",
- "license": "MIT",
- "keywords": [
- "php",
- "swoole",
- "command"
- ],
- "description": "Command for hyperf",
- "autoload": {
- "psr-4": {
- "Hyperf\\Command\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "HyperfTest\\Command\\": "tests/"
- }
- },
- "require": {
- "php": ">=7.2",
- "hyperf/utils": "~2.2.0",
- "psr/event-dispatcher": "^1.0",
- "symfony/console": ">=5.0 <5.4.12"
- },
- "suggest": {
- "hyperf/di": "Required to use annotations."
- },
- "config": {
- "sort-packages": true
- },
- "extra": {
- "branch-alias": {
- "dev-master": "2.2-dev"
- }
- }
- }
|