forked from kozlice/bunny-messenger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 863 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 863 Bytes
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
{
"name": "kozlice/bunny-messenger",
"type": "symfony-bridge",
"description": "Alternative AMQP provider for Symfony Messenger",
"keywords": [],
"homepage": "https://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Valentin Nazarov",
"email": "i.kozlice@protonmail.com"
}
],
"require": {
"php": ">=7.2.5",
"symfony/deprecation-contracts": "^2.4",
"symfony/messenger": "^5.3",
"bunny/bunny": "^0.5.0"
},
"autoload": {
"psr-4": {
"Symfony\\Component\\Messenger\\Bridge\\Bunny\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"require-dev": {
"symfony/property-access": "^4.4|^5.0",
"symfony/serializer": "^4.4|^5.0",
"phpunit/phpunit": "^9.5"
}
}