-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.72 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "react-parallel/worker-pool",
"description": "\ud83d\udc77\ud83d\udc77\u200d\u2640\ufe0f\ud83d\udc77\u200d\u2642\ufe0f Worker pool for only one specific designated task",
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "ceesjank@gmail.com",
"homepage": "http://wyrihaximus.net/"
}
],
"require": {
"php": "^7.4",
"ext-parallel": "*",
"react-parallel/contracts": "^1.0",
"react-parallel/event-loop": "^1.0",
"react-parallel/react-parallel": "^1.0",
"react/event-loop": "^1.1",
"react/promise": "^2.7",
"wyrihaximus/constants": "^1.5",
"wyrihaximus/json-throwable": "^4.0",
"wyrihaximus/pool-info": "^1.0"
},
"require-dev": {
"bruli/php-value-objects": "^2.0",
"money/money": "^2.0",
"moneyphp/money": "^3.2 || ^3.2.1",
"ocramius/package-versions": "^1.4",
"react-parallel/infinite-pool": "^2.0",
"react-parallel/pool-tests": "^2.0",
"wyrihaximus/async-test-utilities": "^2.2",
"wyrihaximus/iterator-or-array-to-array": "^1.1"
},
"config": {
"platform": {
"php": "7.4.7"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"ReactParallel\\Pool\\Worker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ReactParallel\\Tests\\Pool\\Worker\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
]
}
}