-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.36 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
{
"name": "react-parallel/pool-tests",
"description": "\ud83c\udfb1 Pool tests for bridging ext-parallel and ReactPHP",
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "ceesjank@gmail.com",
"homepage": "https://www.wyrihaximus.net/"
}
],
"require": {
"php": "^8.1",
"ext-parallel": "*",
"moneyphp/money": "^3.2.1 || ^4.0.0",
"react-parallel/contracts": "^2@dev",
"react-parallel/event-loop": "^2@dev",
"react/event-loop": "^1.5",
"react/promise": "^2.9 || ^3.1",
"wyrihaximus/async-test-utilities": "^5 || ^7.2",
"wyrihaximus/pool-info": "^1.1 || ^2.0"
},
"require-dev": {},
"autoload": {
"psr-4": {
"ReactParallel\\Tests\\": "src/"
}
},
"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"
]
}
}