-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1017 Bytes
/
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
{
"name": "symplely/thread_queue",
"description": "An simply `uv_queue_work` wrapper API to manage a pool of threads, for parallel PHP execution",
"keywords": [
"parallel",
"thread",
"uv_queue_work",
"libuv",
"async",
"asynchronous"
],
"homepage": "https://github.com/symplely/thread_queue",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Lawrence Stubbs",
"email": "lstubbs@techno.express"
}
],
"require": {
"php": ">7.1"
},
"autoload": {
"psr-4": {
"Async\\Threads\\": [
"Threads/"
]
}
},
"require-dev": {
"phpunit/phpunit": "^8"
},
"autoload-dev": {
"psr-4": {
"Async\\Tests\\": "tests/"
}
},
"suggest": {
"ext-uv": ">0.2.4"
},
"scripts": {
"test": "vendor/bin/phpunit --bootstrap vendor/autoload.php tests"
}
}