-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.38 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.38 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
55
56
57
{
"name": "react-parallel/streams",
"description": "\ud83c\udfde\ufe0f Streams abstraction around ext-parallel Channels for ReactPHP",
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "ceesjank@gmail.com",
"homepage": "http://wyrihaximus.net/"
}
],
"require": {
"php": "^7.4",
"ext-parallel": "*",
"react-parallel/event-loop": "dev-master",
"react/event-loop": "^1.1",
"react/promise": "^2.7",
"react/stream": "^1.1",
"reactivex/rxphp": "^2.0",
"wyrihaximus/constants": "^1.4.3"
},
"require-dev": {
"wyrihaximus/async-test-utilities": "^2.0",
"wyrihaximus/ticking-promise": "^1.6"
},
"config": {
"platform": {
"php": "7.4"
},
"sort-packages": true
},
"extra": {
"unused": [
"ext-parallel"
]
},
"autoload": {
"psr-4": {
"ReactParallel\\Streams\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ReactParallel\\Tests\\Streams\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
]
}
}