This repository was archived by the owner on Oct 12, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.2 KB
/
Copy pathcomposer.json
File metadata and controls
52 lines (52 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
{
"name": "wyrihaximus/react-child-process-psr-3",
"description": "Wrap PSR-3 logger into a child process",
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "ceesjank@gmail.com"
}
],
"require": {
"php": ">=7.4",
"psr/log": "^1.1",
"react/event-loop": "^1.1",
"react/promise": "^2.8",
"wyrihaximus/react-child-process-messenger": "^3 || ^4"
},
"require-dev": {
"monolog/monolog": "^2.2",
"wyrihaximus/async-test-utilities": "^3.4.18"
},
"config": {
"platform": {
"php": "7.4.7"
},
"sort-packages": true
},
"extra": {
"unused": [
"php",
"react/promise-stream"
]
},
"autoload": {
"psr-4": {
"WyriHaximus\\React\\ChildProcess\\PSR3\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WyriHaximus\\React\\Tests\\ChildProcess\\PSR3\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
]
}
}