-
Notifications
You must be signed in to change notification settings - Fork 39
/
composer.json
105 lines (105 loc) · 2.54 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
{
"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]"
},
{
"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.4|^8.0",
"ext-pdo": "*",
"ext-json": "*",
"symfony/config": "^5.4 || ^6.4 || ^7.0",
"symfony/dependency-injection": "^5.4 || ^6.4 || ^7.0",
"symfony/http-kernel": "^5.4.39 || ^6.4 || ^7.0",
"symfony/framework-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/messenger": "^5.4 || ^6.4 || ^7.0",
"prooph/event-store": "^7.9.0"
},
"require-dev": {
"prooph/pdo-event-store": "^1.12",
"phpunit/phpunit": "^9",
"symfony/yaml" : "^5.4 || ^6.4 || ^7.0",
"bookdown/bookdown": "^1.1",
"prooph/bookdown-template": "^0.3",
"friendsofphp/php-cs-fixer": "^3.5",
"prooph/php-cs-fixer-config": "^0.5.0",
"matthiasnoback/symfony-dependency-injection-test": "^3.1 || ^4.1 || ^5.1",
"phpstan/phpstan": "^1.5"
},
"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",
"phpstan": "phpstan analyse -c phpstan.neon -l 6 src"
},
"archive": {
"exclude": [
".coveralls.yml",
".travis.yml",
"benchmark",
"build",
"phpunit.xml*",
"test"
]
}
}