-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
37 lines (37 loc) · 930 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
{
"name": "wyrihaximus/react-child-process-closure",
"description": "Run closures in ReactPHP Child Processes",
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "ceesjank@gmail.com"
}
],
"require": {
"php": "^8 || ^7.4",
"opis/closure": "^3.6",
"react/event-loop": "^1.2",
"react/promise": "^2.8",
"wyrihaximus/react-child-process-messenger": "^4.0"
},
"require-dev": {
"wyrihaximus/async-test-utilities": "^4.0.4"
},
"autoload": {
"psr-4": {
"WyriHaximus\\React\\ChildProcess\\Closure\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WyriHaximus\\React\\Tests\\ChildProcess\\Closure\\": "tests/"
}
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.4.7"
}
}
}