-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
46 lines (46 loc) · 1.19 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
{
"name": "zizaco/upswarm",
"description": "Multi-processed, async, fault-tolerant micro-framework for writing distributed service-oriented applications.",
"keywords": [
"framework",
"upswarm",
"async",
"react",
"distributed"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Zizaco Zizuini",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"react/http": "dev-master#16cd72ffc4037a5e58c8ad51022809c0953adc25",
"symfony/var-dumper": "^3.2",
"nikic/fast-route": "^1.1",
"symfony/console": "^3.2",
"react/filesystem": "dev-master",
"clue/block-react": "^1.1",
"react/zmq": "^0.3.0",
"symfony/http-foundation": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "~3.0"
},
"autoload": {
"psr-4": {
"Upswarm\\": "src/",
"Upswarm\\FunctionalTest\\": "tests/functional"
},
"files": ["src/Util/helpers.php"]
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "v1.0-dev"
}
}
}