-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.58 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "pbaszak/symfony-messenger-cache-bundle",
"type": "symfony-bundle",
"keywords": [
"symfony",
"messenger",
"cache",
"bundle"
],
"description": "Messenger Cache Bundle is a package for the Symfony Messenger component that enables creating, invalidating, and refreshing cache using attributes. This allows for faster and more efficient processing of asynchronous tasks.",
"require": {
"php": ">=8.0",
"symfony/messenger": "^5.4 || ^6.0 || ^6.2",
"symfony/cache": "^5.4 || ^6.0 || ^6.2",
"symfony/config": "^5.4 || ^6.0 || ^6.2",
"symfony/dependency-injection": "^5.4 || ^6.0 || ^6.2",
"symfony/http-kernel": "^5.4 || ^6.0 || ^6.2"
},
"conflict": {
"php": "<8.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.4 || ^6.0 || ^6.2",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-symfony": "^1.2",
"phpstan/phpdoc-parser": "^1.15",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/extension-installer": "^1.2",
"friendsofphp/php-cs-fixer": "^3.13",
"phpunit/phpunit": "<=10.0.15",
"symfony/framework-bundle": "^5.4 || ^6.0 || ^6.2",
"symfony/yaml": "^5.4 || ^6.0 || ^6.2",
"predis/predis": "^2.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"PBaszak\\MessengerCacheBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PBaszak\\MessengerCacheBundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "patrykbaszak",
"email": "patryk.baszak@gmail.com",
"homepage": "https://patrykbaszak.pl"
}
],
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"cache:clear": "rm -rf var/cache/*",
"code:fix": "vendor/bin/php-cs-fixer fix",
"code:analyse": "vendor/bin/phpstan analyse src -c tools/phpstan/fpm-config.neon",
"code:analyse:b": "vendor/bin/phpstan analyse src -c tools/phpstan/fpm-config.neon --generate-baseline tools/phpstan/fpm-baseline.neon --allow-empty-baseline",
"phpunit": "vendor/bin/phpunit",
"test:unit": "@phpunit --group unit tests",
"test:func": "@phpunit --group func tests",
"test:integration": "@phpunit --group integration tests",
"test:ci": [
"@cache:clear",
"@code:fix",
"@code:analyse",
"@test:unit",
"@test:func",
"@test:integration"
]
}
}