forked from nikic/ditaio
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
106 lines (106 loc) · 2.75 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "symplely/coroutine",
"description": "Cooperative multitasking using generators. The basics of coroutines, async and await!",
"keywords": [
"cooperative",
"multitasking",
"asynchronous",
"coroutine",
"task",
"yield",
"parallel",
"process",
"future",
"promise",
"generator",
"libuv",
"spawn",
"await",
"event-loop",
"event-driven",
"ext-parallel",
"async",
"psr-3",
"log",
"logging"
],
"homepage": "https://github.com/symplely/coroutine",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Lawrence Stubbs",
"email": "lstubbs@techno.express"
},
{
"name": "Nikita Popov",
"email": "nikic@php.net"
}
],
"require": {
"php": ">7.1",
"psr/log": "^1.0.0",
"psr/container": ">2.0",
"symplely/spawn": "^5.0.1",
"symplely/thread_queue": "main-dev"
},
"autoload": {
"files": [
"Coroutine/Core.php",
"Coroutine/Internal.php",
"Coroutine/Loggers.php",
"Coroutine/Path.php",
"Coroutine/Socket.php",
"Coroutine/Worker.php",
"Coroutine/Fibers.php",
"Coroutine/Parallel/functional_api.php"
],
"psr-4": {
"Async\\": [
"Coroutine/",
"Coroutine/Di/",
"Coroutine/Misc/",
"Coroutine/Misc/Network",
"Coroutine/Misc/Datatype",
"Coroutine/Logger/",
"Coroutine/Exceptions/",
"Coroutine/Fiber/"
],
"parallel\\": [
"Coroutine/Parallel/",
"Coroutine/Parallel/Channel/Error/",
"Coroutine/Parallel/Future/",
"Coroutine/Parallel/Future/Error",
"Coroutine/Parallel/Future/Error/",
"Coroutine/Parallel/Runtime/Error/"
]
}
},
"require-dev": {
"phpunit/phpunit": "^6 | ^7 | ^8"
},
"autoload-dev": {
"psr-4": {
"Async\\Tests\\": [
"tests/",
"tests/di/",
"tests/parallel/",
"examples/",
"examples/parallel/"
],
"Async\\Tests\\Di\\": [
"tests/di/"
]
}
},
"suggest": {
"ext-uv": ">0.2.4"
},
"scripts": {
"test": "vendor/bin/phpunit --bootstrap vendor/autoload.php tests"
},
"provide": {
"psr/container": "^1.0",
"psr/log-implementation": "^1.0.0"
}
}