-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.34 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
{
"name": "rekalogika/domain-event-outbox",
"description": "Implementation of the transactional outbox pattern on top of rekalogika/domain-event",
"homepage": "https://rekalogika.dev/domain-event",
"keywords": [
"domain-event",
"domain",
"event",
"symfony",
"doctrine",
"event-dispatcher",
"event-listener",
"domain-driven-design",
"ddd",
"cqrs",
"outbox",
"microservice"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Priyadi Iman Nurcahyo",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Rekalogika\\DomainEvent\\Outbox\\": "src/"
}
},
"require": {
"doctrine/doctrine-bundle": "^2.11.3 || ^2.12",
"doctrine/orm": "^2.16 || ^3.0",
"doctrine/persistence": "^3.2",
"rekalogika/domain-event": "^2.5.1",
"rekalogika/domain-event-contracts": "^2.5.1",
"symfony/config": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/lock": "^6.4 || ^7.0",
"symfony/messenger": "^6.4 || ^7.0"
},
"extra": {
"branch-alias": {
"dev-main": "2.6-dev"
}
}
}