-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
55 lines (55 loc) · 1.53 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
{
"name" : "puzzle/amqp",
"description" : "AMQP implementation based on PECL extension",
"type" : "library",
"license": "MIT",
"authors" : [{
"name" : "Nicolas Le Nardou",
"email" : "nico.ln@gmail.com"
}
],
"keywords" : [
"amqp",
"asynchronous"
],
"autoload" : {
"psr-4" : {
"Puzzle\\AMQP\\" : "src",
"Puzzle\\AMQP\\Contexts\\": "features/bootstrap"
}
},
"require" : {
"php": ">=8.3",
"puzzle/configuration" : "~8.3",
"puzzle/pieces" : "~3.0",
"symfony/console": "^5.4|^6.0",
"symfony/event-dispatcher": "~5.4|^6.0",
"swarrot/swarrot": "^4.0",
"ramsey/uuid": "^4.0"
},
"require-dev" : {
"phpunit/phpunit" : "~11.0",
"knplabs/gaufrette": "~0.2",
"puzzle/assert": "~1.1",
"pimple/pimple": "~3.0",
"odolbeau/rabbit-mq-admin-toolkit": "~5.2.2",
"behat/behat": "~3.3",
"symfony/debug": "~3.2",
"doctrine/collections": "<=1.4.0",
"groall/rabbitmq-http-api-client-php": "^0.2.4"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/naoned/rabbit-mq-admin-toolkit"
},
{
"type": "vcs",
"url": "https://github.com/naoned/rabbitmq-http-api-client-php"
}
],
"suggest": {
"ext-amqp": "PECL AMQP extension is required",
"ext-zip" : "PECL ZLib extension is required for GZip processor"
}
}