-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.04 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
{
"name": "becklyn/ddd-doctrine-bridge",
"description": "Doctrine implementation of event store and transaction manager for use with becklyn/ddd-core",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christoph Hautzinger",
"email": "[email protected]"
},
{
"name": "Marko Vujnovic",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"becklyn/ddd-core": "^3.0 || ^4.0",
"doctrine/migrations": "^3.0",
"doctrine/orm": "^2.9",
"doctrine/persistence": "^2.0||^3.0",
"illuminate/collections": "^8.12 || ^9.0",
"ramsey/uuid": "^4.0",
"symfony/serializer": "^5.4 || ^6.0"
},
"require-dev": {
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.1"
},
"autoload": {
"psr-4": {
"Becklyn\\Ddd\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Becklyn\\Ddd\\Tests\\": "tests/"
}
}
}