-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.6 KB
/
Copy pathcomposer.json
File metadata and controls
64 lines (64 loc) · 1.6 KB
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
{
"name": "prooph/standard-projections",
"description": "Standard Projections for Prooph EventStore",
"homepage": "http://getprooph.org/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Alexander Miertsch",
"email": "contact@prooph.de",
"homepage": "http://www.prooph.de"
},
{
"name": "Sascha-Oliver Prolic",
"email": "saschaprolic@googlemail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4 || ^8.0, <8.4",
"prooph/event-store": "^7.8"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.2",
"phpspec/prophecy": "^1.10.3",
"phpunit/phpunit": "^9.5.5",
"prooph/bookdown-template": "^0.2.3",
"prooph/pdo-event-store": "^1.11",
"prooph/php-cs-fixer-config": "^0.5"
},
"suggest": {
"prooph/pdo-event-store": "^1.6 for usage with MariaDB, MySQL or Postgres as event store"
},
"conflict": {
"sandrokeil/interop-config": "<1.0"
},
"autoload": {
"psr-4": {
"Prooph\\StandardProjections\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProophTest\\StandardProjections\\": "tests/",
"ProophTest\\EventStore\\": "vendor/prooph/event-store/tests/"
}
},
"config": {
"sort-packages": true,
"preferred-install": {
"prooph/*": "source"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}