Skip to content

Commit 3e5255a

Browse files
authored
Added composer.json normalize support (#6887)
1 parent a393941 commit 3e5255a

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

composer.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,13 @@
11
{
22
"name": "hyperf/command",
3-
"type": "library",
3+
"description": "Command for hyperf",
44
"license": "MIT",
5+
"type": "library",
56
"keywords": [
67
"php",
78
"swoole",
89
"command"
910
],
10-
"description": "Command for hyperf",
11-
"autoload": {
12-
"psr-4": {
13-
"Hyperf\\Command\\": "src/"
14-
}
15-
},
16-
"autoload-dev": {
17-
"psr-4": {
18-
"HyperfTest\\Command\\": "tests/"
19-
}
20-
},
2111
"require": {
2212
"php": ">=8.1",
2313
"hyperf/collection": "~3.1.0",
@@ -29,12 +19,22 @@
2919
"hyperf/support": "~3.1.0",
3020
"hyperf/tappable": "~3.1.0",
3121
"psr/event-dispatcher": "^1.0",
32-
"symfony/console": "^5.0|^6.0|^7.0"
22+
"symfony/console": "^5.0 || ^6.0 || ^7.0"
3323
},
3424
"suggest": {
3525
"hyperf/di": "Required to use annotations.",
3626
"hyperf/event": "Required to use listeners."
3727
},
28+
"autoload": {
29+
"psr-4": {
30+
"Hyperf\\Command\\": "src/"
31+
}
32+
},
33+
"autoload-dev": {
34+
"psr-4": {
35+
"HyperfTest\\Command\\": "tests/"
36+
}
37+
},
3838
"config": {
3939
"sort-packages": true
4040
},

0 commit comments

Comments
 (0)