-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
38 lines (38 loc) · 964 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": "krak/symfony-messenger-redis",
"description": "Symfony Messenger Redis Adapter",
"type": "symfony-bundle",
"authors": [
{
"name": "RJ Garcia",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"ext-json": "*",
"ext-redis": "*",
"symfony/messenger": "^4.4|^5.4|^6.2"
},
"autoload": {
"psr-4": {
"Krak\\SymfonyMessengerRedis\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Krak\\SymfonyMessengerRedis\\Tests\\": "tests"
}
},
"require-dev": {
"nyholm/symfony-bundle-test": "^1.6",
"phpunit/phpunit": "^9.0",
"symfony/dependency-injection": "^5.4",
"symfony/http-kernel": "^5.4",
"symfony/property-access": "^5.4",
"symfony/serializer": "^5.4"
},
"scripts": {
"test": "phpunit --testdox --colors=always"
}
}