-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) Β· 1.2 KB
/
Copy pathcomposer.json
File metadata and controls
54 lines (54 loc) Β· 1.2 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
{
"name": "detain/sshpool",
"description": "SSH command queue and connection pool runs tons of commands on a ssh host concurrently with completion callback.",
"type": "library",
"require": {
"ext-ssh2": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"mockery/mockery": "*"
},
"license": "GPL-3.0",
"keywords": [
"ssh",
"connection-pool",
"async",
"async-php",
"reactphp",
"concurrency",
"parallel",
"non-blocking",
"event-loop",
"worker-pool",
"multiplex",
"ssh-connection-pool",
"async-ssh",
"channel",
"stream-select",
"high-concurrency",
"php",
"php-library"
],
"autoload": {
"psr-4": {
"Detain\\SshPool\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Detain\\SshPool\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-text"
},
"authors": [
{
"name": "Joe Huss",
"email": "detain@interserver.net"
}
],
"minimum-stability": "dev"
}