-
Notifications
You must be signed in to change notification settings - Fork 102
/
composer.json
59 lines (59 loc) · 1.38 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
{
"name": "bunny/bunny",
"type": "library",
"description": "Performant pure-PHP AMQP (RabbitMQ) non-blocking ReactPHP library",
"keywords": [
"rabbitmq",
"rabbit",
"bunny",
"amqp",
"messaging",
"message",
"queue",
"queueing",
"exchange",
"react",
"react-php",
"reactphp",
"async",
"await",
"fibers"
],
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Jakub Kulhan",
"email": "jakub.kulhan@gmail.com"
}
],
"require": {
"php": "^8.1",
"react/event-loop": "^1.5",
"react/promise": "^3.1",
"react/stream": "^1.3",
"react/async": "^4.2",
"react/socket": "^1.15",
"react/promise-timer": "^1.10",
"evenement/evenement": "^3",
"react/promise-stream": "^1.7"
},
"require-dev": {
"ext-pcntl": "*",
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^1.10",
"react/child-process": "^0.6.5",
"wyrihaximus/react-phpunit-run-tests-in-fiber": "^2 || ^1"
},
"autoload": {
"psr-4": {
"Bunny\\": "src/"
}
},
"autoload-dev": {
"files": ["test/Library/functions.php"],
"psr-4": {
"Bunny\\Test\\": "test/"
}
}
}