-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
47 lines (47 loc) · 1.08 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
{
"name": "hyperf/testing",
"description": "Testing for hyperf",
"license": "MIT",
"type": "library",
"keywords": [
"dev",
"php",
"swoole",
"testing"
],
"require": {
"php": ">=8.1",
"hyperf/codec": "~3.1.0",
"hyperf/collection": "~3.1.0",
"hyperf/contract": "~3.1.0",
"hyperf/coroutine": "~3.1.0",
"hyperf/http-message": "~3.1.0",
"hyperf/http-server": "~3.1.0",
"hyperf/support": "~3.1.0",
"hyperf/utils": "~3.1.0",
"phpunit/phpunit": "^10.0",
"psr/container": "^1.0 || ^2.0",
"symfony/http-foundation": "^5.4 || ^6.0"
},
"suggest": {
"fakerphp/faker": "Required to use Faker feature.(^1.23)"
},
"autoload": {
"psr-4": {
"Hyperf\\Testing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HyperfTest\\Testing\\": "tests/"
}
},
"bin": [
"co-phpunit"
],
"extra": {
"branch-alias": {
"dev-master": "3.1-dev"
}
}
}