-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.32 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
58
{
"name": "symplely/spawn",
"description": "An simply `uv_spawn` or `proc-open` wrapper API to execute and manage a Pool of child-processes, achieving parallel/asynchronous PHP for Blocking I/O.",
"keywords": [
"process",
"child-process",
"proc-open",
"parallel",
"spawn",
"uv_spawn",
"libuv",
"command",
"task",
"async",
"future",
"asynchronous"
],
"homepage": "https://github.com/symplely/spawn",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Lawrence Stubbs",
"email": "[email protected]"
}
],
"require": {
"php": ">7.1",
"symfony/process": ">4"
},
"autoload": {
"files": [
"Spawn/Core.php"
],
"psr-4": {
"Async\\Spawn\\": [
"Spawn/"
],
"Async\\Closure\\": [
"Spawn/Closure/"
]
}
},
"require-dev": {
"phpunit/phpunit": "^6 | ^7 | ^8"
},
"autoload-dev": {
"psr-4": {
"Async\\Tests\\": "tests/"
}
},
"suggest": {
"ext-uv": ">0.2.4"
},
"scripts": {
"test": "vendor/bin/phpunit --bootstrap vendor/autoload.php tests"
}
}