-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
46 lines (46 loc) · 1.29 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
{
"name": "krak/symfony-messenger-auto-scale",
"description": "Symfony Messenger Auto Scaling",
"type": "symfony-bundle",
"authors": [
{
"name": "RJ Garcia",
"email": "ragboyjr@icloud.com"
}
],
"license": "MIT",
"require": {
"ext-pcntl": "*",
"krak/schema": "^0.2.0",
"psr/event-dispatcher": "^1.0",
"symfony/messenger": "^4.4|^5.4|^6.2"
},
"autoload": {
"psr-4": {
"Krak\\SymfonyMessengerAutoScale\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Krak\\SymfonyMessengerAutoScale\\Tests\\": "tests"
}
},
"require-dev": {
"ext-redis": "*",
"krak/symfony-messenger-redis": "^0.1.0",
"nyholm/symfony-bundle-test": "^1.6",
"phpunit/phpunit": "^9.2",
"psr/simple-cache": "^1.0",
"symfony/cache": "^5.4",
"symfony/console": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/http-kernel": "^5.4",
"symfony/process": "^5.4",
"symfony/property-access": "^5.4",
"symfony/serializer": "^5.4"
},
"scripts": {
"test": "phpunit --testdox --colors=always",
"flush-redis": "docker-compose exec -T redis redis-cli flushall"
}
}