forked from prooph/event-store-symfony-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
107 lines (107 loc) · 2.57 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "prooph/event-store-symfony-bundle",
"description": "",
"license": "BSD-3-Clause",
"type": "symfony-bundle",
"homepage": "http://getprooph.org/",
"authors": [
{
"name": "Alexander Miertsch",
"email": "[email protected]",
"homepage": "http://www.prooph.de"
},
{
"name": "Sascha-Oliver Prolic",
"email": "[email protected]"
},
{
"name": "Malte Blättermann",
"email": "[email protected]"
},
{
"name": "Ralf Junghanns",
"email": "[email protected]"
},
{
"name": "Oskar Pfeifer-Bley",
"email": "[email protected]"
}
],
"keywords": [
"prooph",
"Symfony",
"Bundle",
"EventStore",
"EventSourcing",
"DDD",
"PHP"
],
"support": {
"issues": "https://github.com/prooph/event-store-symfony-bundle/issues",
"source": "https://github.com/prooph/event-store-symfony-bundle",
"docs": "http://getprooph.org/"
},
"autoload": {
"psr-4": {
"Prooph\\Bundle\\EventStore\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ProophTest\\Bundle\\EventStore\\": "test"
}
},
"require": {
"php": "^7.1",
"symfony/config": "^3.3 || ^4.0",
"symfony/dependency-injection": "^3.3 || ^4.0",
"symfony/http-kernel": "^3.3 || ^4.0",
"symfony/framework-bundle": "^3.3 || ^4.0",
"prooph/event-store": "^7.0"
},
"require-dev": {
"prooph/event-sourcing": "^5.0",
"prooph/snapshot-store": "^1.0",
"prooph/pdo-event-store": "^1.0",
"phpunit/phpunit": "^6",
"symfony/yaml" : "^3.3 || ^4.0",
"bookdown/bookdown": "1.x-dev as 1.0.0",
"prooph/bookdown-template": "^0.2.3",
"friendsofphp/php-cs-fixer": "^2.8.1",
"prooph/php-cs-fixer-config": "^0.2.1",
"matthiasnoback/symfony-dependency-injection-test": "^2.3",
"phpstan/phpstan": "^0.9.2"
},
"suggest": {
"prooph/event-store-bus-bridge": "To Marry CQRS (ProophSerivceBus) with Event Sourcing"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-prooph_v7" : "0.3-dev",
"dev-master": "1.0-dev"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "phpunit --no-coverage",
"test-coverage": "phpunit",
"docs": "bookdown doc/bookdown.json"
},
"archive": {
"exclude": [
".coveralls.yml",
".travis.yml",
"benchmark",
"build",
"phpunit.xml*",
"test"
]
}
}