-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 988 Bytes
/
Copy pathcomposer.json
File metadata and controls
38 lines (38 loc) · 988 Bytes
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
{
"name": "sunmking/think8-queue",
"description": "thinkphp8 queue lib",
"type": "library",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"topthink/think-queue": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"mockery/mockery": "^1.4"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Sunmking\\Think8Queue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sunmking\\Think8Queue\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage --coverage-clover coverage.xml",
"test-unit": "phpunit --testsuite Unit",
"test-integration": "phpunit --testsuite Integration",
"test-feature": "phpunit --testsuite Feature"
},
"authors": [
{
"name": "sunmking",
"email": "1042080686@qq.com"
}
]
}