-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
74 lines (74 loc) · 1.65 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "proophsoftware/prooph-cli",
"description": "prooph components command line tool for rapid development",
"type": "library",
"license": "BSD-3-Clause",
"homepage": "http://prooph-software.com/",
"authors": [
{
"name": "Alexander Miertsch",
"email": "contact@prooph.de",
"homepage": "http://prooph-software.com/"
},
{
"name": "Sandro Keil",
"email": "contact@prooph.de",
"homepage": "http://prooph-software.com/"
}
],
"keywords": [
"cli",
"tool",
"rapid",
"development",
"prooph",
"components",
"code",
"generation"
],
"require": {
"php": "~5.5 || ~7.0",
"symfony/console": "^2.5 || ^3.0",
"zendframework/zend-code": "^2.6.2 || ^3.0.1",
"zendframework/zend-filter": "^2.6.1 || ^3.0",
"container-interop/container-interop": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^4.8 || ^5.2",
"fabpot/php-cs-fixer": "^1.11",
"prooph/event-sourcing": "^4.0"
},
"suggest" : {
"prooph/event-sourcing": "If you want to update a prooph event sourcing aggregate"
},
"autoload": {
"psr-4": {
"Prooph\\Cli\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProophTest\\Cli\\": "tests/"
}
},
"bin": [
"bin/prooph-cli"
],
"scripts": {
"check": [
"@cs",
"@test"
],
"coveralls": "coveralls",
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover clover.xml"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev",
"dev-develop": "1.1-dev"
}
}
}