-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.2 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
{
"name": "windwalker/promise",
"type": "windwalker-package",
"description": "Windwalker Promise package",
"keywords": [
"windwalker",
"framework",
"promise",
"swoole",
"async",
"reactor",
"react",
"coroutine"
],
"homepage": "https://github.com/ventoviro/windwalker-promise",
"license": "MIT",
"require": {
"php": ">=8.0.0",
"windwalker/utilities": "4.x-dev"
},
"require-dev": {
"phpunit/phpunit": "^8.0||^9.0",
"windwalker/test": "4.x-dev",
"swoole/ide-helper": "^4.4",
"guzzlehttp/promises": "^1.3",
"react/promise": "^2.7",
"react/event-loop": "^1.1"
},
"suggest": {
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Windwalker\\Promise\\": "src/"
},
"files": [
"src/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"Windwalker\\Promise\\Test\\": "test/"
}
},
"extra": {
"branch-alias": {
"dev-4": "4.x-dev"
}
},
"config": {
"platform": {
"php": "8.0.0"
}
}
}