-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.21 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
{
"name": "morebec/orkestra-event-sourcing",
"description": "Orkestra component providing utilities and classes for implementing Event Sourcing",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "jwillp",
"email": "[email protected]"
}
],
"suggest": {
"morebec/orkestra-postgresql-event-store": "PostgreSQL implementation of an Event Store"
},
"require": {
"php": ">=7.4",
"ramsey/uuid": "^4.1",
"morebec/orkestra-datetime": "^2.4",
"morebec/orkestra-enum": "^2.4",
"morebec/orkestra-modeling": "^2.4",
"morebec/orkestra-messaging": "^2.4",
"morebec/orkestra-normalization": "^2.4",
"morebec/orkestra-worker": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"ext-dom": "*",
"phpstan/phpstan": "^0.12.7",
"friendsofphp/php-cs-fixer": "^2.16",
"symfony/var-dumper": "5.*"
},
"autoload": {
"psr-4": {
"Morebec\\Orkestra\\EventSourcing\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Morebec\\Orkestra\\EventSourcing\\": "tests"
}
}
}