-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.68 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/infinite-pool",
"description": "♾️ Infinite pool for bridging ext-parallel and ReactPHP",
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "ceesjank@gmail.com",
"homepage": "http://wyrihaximus.net/"
}
],
"require": {
"php": "^8.1",
"ext-parallel": "*",
"react-parallel/contracts": "^2@dev",
"react-parallel/event-loop": "^2@dev",
"react-parallel/runtime": "^3@dev",
"react/event-loop": "^1.5",
"react/promise": "^2.9 || ^3.1",
"thecodingmachine/safe": "^2.5",
"wyrihaximus/constants": "^1.6",
"wyrihaximus/metrics": "^2",
"wyrihaximus/pool-info": "^1.1 || ^2.0"
},
"require-dev": {
"moneyphp/money": "^3.2",
"react-parallel/pool-tests": "^4@dev",
"wyrihaximus/async-test-utilities": "^5 || ^7.2"
},
"autoload": {
"psr-4": {
"ReactParallel\\Pool\\Infinite\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ReactParallel\\Tests\\Pool\\Infinite\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"icanhazstring/composer-unused": true,
"infection/extension-installer": true
},
"platform": {
"php": "8.1.13"
},
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
]
}
}