-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
67 lines (67 loc) · 1.5 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
{
"name": "domraider/rxnet",
"description": "Rx connector for PHP",
"keywords": [
"rabbit",
"queue",
"zmq",
"zeromq",
"redis",
"http",
"httpd",
"react",
"reactivex",
"rx"
],
"require": {
"php": "^5.6 || ^7.0",
"reactivex/rxphp": "^1.1",
"react/react": "0.4.2",
"ramsey/uuid": "^3.5.1",
"nikic/fast-route": "^1.2",
"guzzlehttp/guzzle": "^6.0",
"guzzlehttp/psr7": "~1.4.0",
"domraider/libdns": "^1.1",
"domraider/bunny": "@dev",
"clue/redis-react": "^1.0",
"voryx/event-loop": "0.2.*",
"phpoption/phpoption": "^1.5",
"anahkiasen/underscore-php": "^2.0"
},
"require-dev": {
"peridot-php/peridot-list-reporter": "^1.0",
"peridot-php/peridot-dot-reporter": "^1.0",
"peridot-php/peridot-watcher-plugin": "^1.3",
"peridot-php/peridot-code-coverage-reporters": "^2.0",
"peridot-php/leo": "^1.5",
"peridot-php/peridot-concurrency": "^1.1",
"peridot-php/peridot-prophecy-plugin": "^1.1",
"bcrowe/growl": "^2.0",
"cloak/peridot-cloak-plugin": "^2.0",
"holyshared/file-fixture": "^2.0"
},
"suggest": {
"ext-zmq": "*",
"ext-mysqli": "*"
},
"license": "MIT",
"authors": [
{
"name": "Vinceveve",
"email": "[email protected]"
},
{
"name": "etienneroudeix",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-0": {
"Rxnet": "src/"
},
"files": [
"src/Rxnet/functions.php"
]
}
}