-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
executable file
·59 lines (59 loc) · 1.43 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
{
"name": "prooph/micro",
"description": "Functional prooph for microservices",
"type": "library",
"license": "BSD-3-Clause",
"homepage": "http://getprooph.org/",
"authors": [
{
"name": "Alexander Miertsch",
"email": "[email protected]",
"homepage": "http://www.prooph.de"
},
{
"name": "Sascha-Oliver Prolic",
"email": "[email protected]"
}
],
"keywords": [
"EventStore",
"EventSourcing",
"DDD",
"prooph"
],
"require": {
"php": "^7.4",
"amphp/amp": "^2.4.3",
"prooph/event-store": "dev-master",
"phunkie/phunkie": "0.11.1"
},
"require-dev": {
"kahlan/kahlan": "^4.7.4",
"prooph/event-store-client": "dev-master",
"prooph/php-cs-fixer-config": "^0.3.1",
"php-coveralls/php-coveralls": "^2.1",
"malukenho/docheader": "^0.1.4"
},
"autoload": {
"psr-4": {
"Prooph\\Micro\\": "src/"
},
"files": [
"src/Kernel.php"
]
},
"autoload-dev": {
"psr-4": {
"ProophTest\\Micro\\": "tests/"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "phpunit"
}
}