-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
47 lines (47 loc) · 1.44 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
{
"name": "zenstruck/messenger-test",
"description": "Assertions and helpers for testing your symfony/messenger queues.",
"homepage": "https://github.com/zenstruck/messenger-test",
"type": "symfony-bundle",
"license": "MIT",
"keywords": ["messenger", "symfony", "test", "queue", "dev"],
"authors": [
{
"name": "Kevin Bond",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"symfony/deprecation-contracts": "^2.2|^3.0",
"symfony/framework-bundle": "^5.4.44|^6.0|^7.0",
"symfony/messenger": "^5.4|^6.0|^7.0",
"zenstruck/assert": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.6.0",
"symfony/browser-kit": "^5.4|^6.0|^7.0",
"symfony/clock": "^6.3|^7.0",
"symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
"symfony/yaml": "^5.4|^6.0|^7.0"
},
"suggest": {
"symfony/clock": "A PSR-20 clock implementation in order to support DelayStamp."
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"conflict": {
"symfony/framework-bundle": "5.4.5|6.0.5"
},
"autoload": {
"psr-4": { "Zenstruck\\Messenger\\Test\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Zenstruck\\Messenger\\Test\\Tests\\": "tests/" }
},
"minimum-stability": "dev",
"prefer-stable": true
}