-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.05 KB
/
Copy pathcomposer.json
File metadata and controls
47 lines (47 loc) · 1.05 KB
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
{
"name": "trowski/react-fiber",
"description": "ReactPHP + ext-fiber",
"keywords": [
"async",
"asynchronous",
"concurrency",
"promise",
"awaitable",
"future",
"non-blocking",
"event",
"event-loop"
],
"license": "MIT",
"authors": [
{
"name": "Aaron Piotrowski",
"email": "aaron@trowski.com"
}
],
"require": {
"php": ">=8",
"ext-fiber": "*",
"react/event-loop": "^1",
"react/promise": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "^9",
"react/http": "^1.1",
"react/promise-stream": "^1.2"
},
"autoload": {
"psr-4": {
"Trowski\\ReactFiber\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Trowski\\ReactFiber\\Test\\": "test"
}
},
"scripts": {
"test": "@php -dzend.assertions=1 -dassert.exception=1 ./vendor/bin/phpunit",
"code-style": "@php ./vendor/bin/php-cs-fixer fix"
}
}