-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
60 lines (52 loc) · 1.48 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
{
"name": "fivelab/amqp-bundle",
"description": "The bundle for integrate fivelab/amqp library with Symfony application",
"keywords": ["amqp", "publisher", "bundle", "consumer", "receiver"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Vitalii Zhuk",
"email": "[email protected]"
},
{
"name": "FiveLab Team",
"email": "[email protected]",
"homepage": "https://fivelab.org"
}
],
"require": {
"php": "^8.2",
"fivelab/amqp": "~2.1.0",
"symfony/dependency-injection": "~5.4 | ~6.0 | ~7.0",
"symfony/framework-bundle": "~5.4 | ~6.0 | ~7.0"
},
"require-dev": {
"phpunit/phpunit": "~10.1",
"phpmetrics/phpmetrics": "^2.0",
"escapestudios/symfony2-coding-standard": "~3.5",
"matthiasnoback/symfony-dependency-injection-test": "~4.0",
"symfony/console": "~5.4 | ~6.0",
"symfony/expression-language": "~5.4 | ~6.0",
"fivelab/ci-rules": "dev-master"
},
"autoload": {
"psr-4": {
"FiveLab\\Bundle\\AmqpBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FiveLab\\Bundle\\AmqpBundle\\Tests\\": "tests/"
}
},
"config": {
"bin-dir": "bin"
},
"extra": {
"thanks": {
"name": "fivelab/amqp-bundle",
"url": "https://github.com/FiveLab/AmqpBundle"
}
}
}