-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.73 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
{
"name": "rebuy/amqp-php-consumer",
"description": "Library for creating annotation based AMQP consumers",
"keywords": ["amqp", "consumer", "annotation"],
"minimum-stability": "stable",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Martin Parsiegla",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"php-amqplib/php-amqplib": "^3.0.0",
"doctrine/annotations": "^1.13.3|^2.0.1",
"symfony/event-dispatcher": "^6.4|^7.0",
"doctrine/collections": "^1.6|^2.1.2"
},
"require-dev": {
"jms/serializer": "^3.15.0",
"phpunit/phpunit": "^9.5.10",
"codeception/verify": "^2.1.1",
"league/statsd": "~1.5",
"symfony/stopwatch": "^6.4|^7.0",
"symfony/serializer": "^6.4|^7.0",
"psr/log": "^1.0",
"phpspec/prophecy-phpunit": "^2.0"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"Rebuy\\Amqp\\Consumer\\": "src/Rebuy/Amqp/Consumer"
}
},
"autoload-dev": {
"psr-4": {
"Rebuy\\Tests\\": "tests/Rebuy/Tests"
}
},
"suggest": {
"psr/log": "required if you'd like to use the LogHandler or LogSubscriber",
"league/statsd": "required if you'd like to use the TimingSubscriber",
"symfony/stopwatch": "required if you'd like to use the TimingSubscriber in the amqp package",
"jms/serializer": "required if you'd like to use the jms serializer",
"symfony/serializer": "required if you'd like to use the symfony serializer"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}