-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 981 Bytes
/
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": "zfr/zfr-command-bus",
"require": {
"php": "^7.0",
"container-interop/container-interop": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^5.4",
"squizlabs/php_codesniffer": "^2.5"
},
"license": "MIT",
"authors": [
{
"name": "Daniel Gimenes",
"email": "[email protected]"
},
{
"name": "Michaël Gallego",
"email": "[email protected]"
}
],
"extra": {
"zf": {
"config-provider": "ZfrCommandBus\\ConfigProvider"
}
},
"autoload": {
"psr-4": {
"ZfrCommandBus\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZfrCommandBusTest\\": "test/"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit"
}
}