-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
57 lines (57 loc) · 1.48 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "hyperf/di",
"description": "A DI for Hyperf.",
"license": "MIT",
"keywords": [
"php",
"swoole",
"hyperf",
"di",
"annotation"
],
"homepage": "https://hyperf.io",
"support": {
"issues": "https://github.com/hyperf/hyperf/issues",
"source": "https://github.com/hyperf/hyperf",
"docs": "https://hyperf.wiki",
"pull-request": "https://github.com/hyperf/hyperf/pulls"
},
"require": {
"php": ">=8.1",
"doctrine/instantiator": "^1.0",
"hyperf/code-parser": "~3.1.0",
"hyperf/pipeline": "~3.1.0",
"hyperf/stdlib": "~3.1.0",
"hyperf/support": "~3.1.0",
"nikic/php-parser": "^4.1",
"php-di/phpdoc-reader": "^2.2",
"psr/container": "^1.0 || ^2.0",
"symfony/finder": "^5.0 || ^6.0 || ^7.0",
"vlucas/phpdotenv": "^5.0"
},
"suggest": {
"ext-pcntl": "Required to scan annotations.",
"hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
},
"autoload": {
"psr-4": {
"Hyperf\\Di\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HyperfTest\\Di\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.1-dev"
},
"hyperf": {
"config": "Hyperf\\Di\\ConfigProvider"
}
}
}