forked from fmasa/messenger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.18 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
{
"name": "fmasa/messenger",
"description": "Symfony/Messenger integration into Nette Framework",
"keywords": ["messenger", "symfony", "symfony-messenger", "message bus", "command bus", "event bus", "nette"],
"type": "library",
"license": "MIT",
"scripts": {
"cs": "vendor/bin/phpcs",
"check": [
"vendor/bin/phpunit",
"@stan",
"@cs"
],
"stan": "vendor/bin/phpstan analyse --level 7 src"
},
"require": {
"php": "^7.4 || ^8.0",
"psr/container": "^1.0",
"symfony/event-dispatcher": "^4.4|^5.0",
"symfony/messenger": "^5.3",
"symfony/console": "^4.4|^5.0",
"nette/di": "^3.0.6",
"nette/schema": "^1.0.3",
"tracy/tracy": "^2.6"
},
"require-dev": {
"mockery/mockery": "^1.2",
"phpunit/phpunit": "^9.5",
"nette/bootstrap": "^3.0",
"phpstan/phpstan": "^1.2.0",
"doctrine/coding-standard": "^8.1"
},
"authors": [
{
"name": "František Maša",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Fmasa\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fixtures\\": "tests/fixtures"
}
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}