-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathcomposer.json
49 lines (49 loc) · 1.12 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/filesystem",
"description": "Asynchronous filesystem abstraction.",
"keywords": [
"filesystem",
"asynchronous"
],
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4.0",
"react/event-loop": "^1.2",
"react/promise": "^3 || ^2.8",
"react/promise-stream": "^1.2",
"react/stream": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"react/async": "^4 || ^3"
},
"autoload": {
"psr-4": {
"React\\Filesystem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"React\\Tests\\Filesystem\\": "tests/"
}
},
"suggest": {
"ext-eio": "* for great I/O performance",
"ext-uv": "* for better I/O performance"
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.4.7"
},
"allow-plugins": {
"wyrihaximus/composer-update-bin-autoload-path": true
}
}
}