-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
46 lines (46 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
{
"name": "robotusers/commander",
"description": "Command Bus abstraction for PHP.",
"homepage": "https://github.com/robotusers/commander",
"license": "MIT",
"type": "library",
"require": {
"php": "^7.1|^8"
},
"require-dev": {
"league/tactician": "*",
"prooph/service-bus": "*",
"simple-bus/message-bus": "*",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^7|^8",
"squizlabs/php_codesniffer": "^3.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^0.12.6"
},
"suggest": {
"league/tactician": "To use TacticianAdapter.",
"prooph/service-bus": "To use ServiceBusAdapter.",
"simple-bus/message-bus": "To use SimpleBusAdapter."
},
"autoload": {
"psr-4": {
"Robotusers\\Commander\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Robotusers\\Commander\\Test\\": "tests"
}
},
"scripts": {
"check": [
"@test",
"@stan-check",
"@cs-check"
],
"cs-check": "phpcs --colors -p --standard=PSR2 ./src ./tests",
"cs-fix": "phpcbf --colors --standard=PSR2 ./src ./tests",
"stan-check": "phpstan analyse ./src -l 1",
"test": "phpunit --colors=always"
}
}