forked from jakubkulhan/bunny
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.29 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
{
"name": "bunny/bunny",
"description": "Performant pure-PHP AMQP (RabbitMQ) sync/async (ReactPHP) library",
"keywords": [
"rabbitmq",
"rabbit",
"bunny",
"amqp",
"messaging",
"message",
"queue",
"queueing",
"exchange",
"react",
"react-php",
"reactphp"
],
"repositories": [
{
"type": "git",
"url": "https://github.com/web3promax/laminas-log.git"
}
],
"require": {
"php": "^8.2",
"laminas/laminas-log": "dev-master",
"react/event-loop": "^1.0 || ^0.5 || ^0.4",
"react/promise": "~2.2",
"laminas/laminas-diactoros": "^3.3.1"
},
"require-dev": {
"ext-pcntl": "*",
"phpunit/phpunit": "^9.5 || ^7.5.20",
"symfony/process": "^6.1 || ^4.4",
"phpstan/phpstan": "^1.10"
},
"suggest": {
"ext-pcntl": "For using synchronous AMQP/RabbitMQ client"
},
"autoload": {
"psr-4": {
"Amqp\\": "src/Amqp/",
"Bunny\\": "src/Bunny/"
}
},
"autoload-dev": {
"files": ["test/Library/functions.php"],
"psr-4": {
"Bunny\\": "test/Bunny/",
"Bunny\\Test\\Library\\": "test/Library/"
}
}
}