-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
67 lines (67 loc) · 1.5 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
{
"name": "psa/event-sourcing",
"description": "Event Sourcing Library",
"type": "library",
"authors": [
{
"name": "Florian Krämer",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"ext-json": "*",
"beberlei/assert": "^3.2",
"prooph/event-store": "dev-master#70ed3816a49769557dc7ec6c6828823fced31348 as v8.0.0-RC-1",
"prooph/event-store-client": "dev-master#30b35b2e4d0c9bea7420f3088c2ec3732efcb25b as 1.0",
"psr/log": "^1.1",
"ramsey/uuid": "^3.8"
},
"require-dev": {
"guzzlehttp/guzzle": "^6.3",
"php-http/guzzle6-adapter": "^2.0",
"phpro/grumphp": "^0.15.2",
"phpstan/phpstan": "^0.11.16",
"phpunit/phpunit": "^8.2",
"prooph/event-store-http-client": "dev-master#f47ac7bfe5905c6fc181411feb65c941f9396334",
"psr/cache": "^1.0",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Psa\\EventSourcing\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Psa\\EventSourcing\\Test\\": "tests\\"
}
},
"scripts": {
"test": [
"./bin/phpunit"
],
"coverage": [
".\\bin\\phpunit --coverage-html ./tmp/coverage"
],
"cscheck": [
".\\bin\\phpcs .\\src .\\tests --standard=./phpcs.xml"
],
"csfix": [
".\\bin\\phpcbf .\\src .\\tests --standard=./phpcs.xml"
],
"analyze": [
".\\bin\\phpstan analyse -l 5 -c phpstan.neon .\\src\\"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"bin-dir": "bin",
"sort-packages": true,
"prestissimo": {
"maxConnections": 12,
"minConnections": 6
}
}
}