-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 924 Bytes
/
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
{
"name": "leberknecht/amqp-rpc-transporter-bundle",
"type": "symfony-bundle",
"description": "The bundle implements RPC functionality for AMQP protocol to the messenger component",
"keywords": [
"amqp",
"rpc",
"symfony",
"messenger"
],
"homepage": "https://github.com/leberknecht/amqp-rpc-transporter-bundle",
"license": "GPL-3.0-or-later",
"minimum-stability": "dev",
"authors": [
{
"name": "Delf Tonder",
"homepage": "https://github.com/leberknecht/amqp-rpc-transporter-bundle"
}
],
"require": {
"php": ">=7.3",
"symfony/framework-bundle": ">=4.0",
"symfony/messenger": ">=4.3-dev",
"ext-amqp": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"php-coveralls/php-coveralls": "^2.4"
},
"autoload": {
"psr-4": {
"Leberknecht\\AmqpRpcTransporterBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
}
}