-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
53 lines (53 loc) · 1.3 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
{
"name": "lzakrzewski/prooph-saga-playground",
"authors": [
{
"name": "lzakrzewski",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"": "src/"
},
"classmap": ["config/Config.php"]
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests/"
}
},
"require": {
"php": ">=7.1.0",
"ramsey/uuid": "~3.7",
"psr/container": "^1.0",
"prooph/service-bus": "~6.1",
"symfony/console": "~3.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.8",
"phpunit/phpunit": "~6.4"
},
"scripts": {
"cs-fixer-ci": "bin/php-cs-fixer fix --config=php_cs.dist --dry-run",
"cs-fixer": "bin/php-cs-fixer fix --config=php_cs.dist",
"unit": "bin/phpunit --testsuite=unit",
"integration": "bin/phpunit --testsuite=integration",
"acceptance": "bin/phpunit --testsuite=acceptance",
"test": [
"@cs-fixer",
"@unit",
"@integration",
"@acceptance"
],
"test-ci": [
"@cs-fixer-ci",
"@unit",
"@integration",
"@acceptance"
]
},
"config": {
"bin-dir": "bin"
}
}