-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 904 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 904 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
{
"name": "clue/shell-react",
"description": "Run async commands within any interactive shell command, built on top of ReactPHP.",
"keywords": ["interactive", "sheller", "ReactPHP", "async"],
"homepage": "https://github.com/clue/reactphp-shell",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "christian@lueck.tv"
}
],
"autoload": {
"psr-4" : {
"Clue\\React\\Shell\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Clue\\Tests\\React\\Shell\\": "tests/"
}
},
"require": {
"php": ">=5.3",
"react/child-process": "^0.6.3",
"react/event-loop": "^1.2",
"react/stream": "^1.2",
"react/promise": "^3.0 || ^2.0 || ^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
}
}