-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.5 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
{
"name": "react-parallel/runtime",
"description": "\ud83d\udca8 Convinence wrapper around ext-parallel Runtime for 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/event-loop": "^2@dev",
"react/event-loop": "^1.5",
"react/promise": "^2.9 || ^3.1",
"wyrihaximus/constants": "^1.6"
},
"require-dev": {
"wyrihaximus/async-test-utilities": "^5 || ^7.2",
"wyrihaximus/ticking-promise": "^3"
},
"autoload": {
"psr-4": {
"ReactParallel\\Runtime\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ReactParallel\\Tests\\Runtime\\": "tests/"
},
"files": [
"tests/LatchcombException.php"
]
},
"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"
]
}
}