-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
58 lines (58 loc) · 1.46 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
56
57
58
{
"name": "prooph/message-flow-analyzer",
"description": "Static code analyzer for prooph projects",
"type": "library",
"license": "BSD-3-Clause",
"homepage": "http://getprooph.org/",
"authors": [
{
"name": "Alexander Miertsch",
"email": "[email protected]"
},
{
"name": "Sascha-Oliver Prolic",
"email": "[email protected]"
}
],
"keywords": [
"prooph",
"analyzer"
],
"require": {
"roave/better-reflection": "^2.0",
"nikic/php-parser": "^3.1",
"symfony/console": "^3.3 || ^4.0"
},
"autoload": {
"psr-4": {
"Prooph\\MessageFlowAnalyzer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProophTest\\MessageFlowAnalyzer\\": "tests/"
}
},
"require-dev": {
"prooph/common": "^4.1",
"phpunit/phpunit": "^6.0",
"prooph/php-cs-fixer-config": "^0.3",
"prooph/bookdown-template": "^0.2.3",
"satooshi/php-coveralls": "^1.0",
"prooph/event-sourcing": "^5.2"
},
"bin": [
"bin/prooph-analyzer"
],
"scripts": {
"check": [
"@cs",
"@test",
"@docheader"
],
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"docheader": "docheader check src/ tests/",
"test": "phpunit"
}
}