-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
69 lines (69 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
61
62
63
64
65
66
67
68
69
{
"name": "logicalsteps/async",
"type": "library",
"description": "async await implementation using generator function in php",
"keywords": [
"asynchronous",
"async",
"awaitable",
"await",
"async-await",
"callback",
"coroutine",
"promise",
"reactphp",
"amphp",
"guzzle",
"httplug",
"concurrency",
"non-blocking",
"event",
"event-loop"
],
"homepage": "https://github.com/logicalsteps/async",
"license": "MIT",
"authors": [
{
"name": "See contributors",
"homepage": "https://github.com/logicalsteps/async/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/logicalsteps/async/issues"
},
"require": {
"php": ">=7.2",
"psr/log": "^1.0",
"ext-json": "*",
"react/promise": "^2.8"
},
"require-dev": {
"phploc/phploc": "~4.0",
"phpmd/phpmd": "^2.8",
"phpunit/phpunit": "~7.3",
"scrutinizer/ocular": "^1.7",
"sebastian/phpcpd": "~4.1",
"react/event-loop": "~1.0",
"php-http/curl-client": "^1.7",
"clue/buzz-react": "^2.4",
"psy/psysh": "^0.10.3",
"pdepend/pdepend": "^2.7",
"amphp/http-client": "^4.3",
"clue/block-react": "^1.3",
"amphp/amp": "^2.4",
"amphp/socket": "^1.1"
},
"autoload": {
"psr-4": {
"LogicalSteps\\Async\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LogicalSteps\\Async\\Test\\": "tests/"
}
},
"config": {
"bin-dir": "./"
}
}