forked from hyperf/testing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.54 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.54 KB
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
58
59
60
61
62
63
64
{
"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",
"hyperf/database-sqlite": "^3.1",
"hyperf/database": "^3.1"
},
"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"
}
},
"repositories": {
"opencodeco": {
"type": "composer",
"url": "https://composer.opencodeco.dev"
}
},
"scripts": {
"test": "./co-phpunit --exclude-group NonCoroutine"
},
"require-dev": {
"mockery/mockery": "^1.6",
"hyperf/di": "^3.1",
"swoole/ide-helper": "^5.1",
"hyperf/config": "^3.1"
}
}