-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
60 lines (60 loc) · 2.1 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": "handcraftedinthealps/redis-transport-bundle",
"description": "A symfony messenger transport implementation for redis streams.",
"type": "symfony-bundle",
"license": "MIT",
"require": {
"php": "^7.3 || ^8.0",
"ext-redis": "^4.2 || ^5.0 || ^6.0",
"symfony/messenger": "^4.3 || ^5.4 || ^6.0",
"symfony/config": "^3.4 || ^4.0 || ^5.4 || ^6.0",
"symfony/dependency-injection": "^3.4 || ^4.0 || ^5.4 || ^6.0",
"symfony/serializer": "^3.4 || ^4.0 || ^5.4 || ^6.0",
"symfony/property-access": "^3.4 || ^4.0 || ^5.4 || ^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^2.0 || ^3.9",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-symfony": "^1.2",
"symfony/console": "^3.4 || ^4.0 || ^5.4 || ^6.0",
"symfony/framework-bundle": "^3.4 || ^4.0 || ^5.4 || ^6.0",
"symfony/yaml": "^3.4 || ^4.0 || ^5.4 || ^6.0",
"symfony/error-handler": "^3.4 || ^4.0 || ^5.4 || ^6.0",
"phpspec/prophecy-phpunit": "^2.0",
"symfony/redis-messenger": "^5.4 || ^6.0"
},
"suggest": {
"symfony/redis-messenger": "Required if version of symfony/messenger is >= 5.1"
},
"scripts": {
"lint": [
"@composer validate --strict",
"@phpstan",
"@php-cs",
"@lint-yaml"
],
"test": [
"@phpunit"
],
"phpunit": "@php vendor/bin/phpunit",
"phpstan": [
"@php Tests/bin/console cache:warmup --env=dev",
"@php vendor/bin/phpstan analyze -c phpstan.neon ."
],
"php-cs": "@php vendor/bin/php-cs-fixer fix --verbose --diff --dry-run",
"php-cs-fix": "@php vendor/bin/php-cs-fixer fix",
"lint-yaml": "@php Tests/bin/console lint:yaml Tests"
},
"autoload": {
"psr-4": {
"HandcraftedInTheAlps\\Bundle\\RedisTransportBundle\\": ""
},
"exclude-from-classmap": ["/Tests/"]
},
"autoload-dev": {
"classmap": [
"Tests/Kernel.php"
]
}
}