-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.1 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.1 KB
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
{
"name": "domain-engine/toolkit",
"type": "symfony-bundle",
"description": "Implementation of DDD concepts library as Symfony Bundle",
"keywords": [
"symfony",
"bundle",
"ddd",
"value-object",
"domain-event",
"domain"
],
"license": "MIT",
"authors": [
{
"name": "Peter Brecska",
"email": "peter@brecska.sk"
}
],
"require": {
"php": ">=8.3",
"symfony/framework-bundle": "^7.0",
"symfony/config": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/http-kernel": "^7.0",
"symfony/messenger": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"symfony/phpunit-bridge": "^7.0",
"symfony/yaml": "^7.3"
},
"autoload": {
"psr-4": {
"DomainEngine\\ToolkitBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DomainEngine\\ToolkitBundle\\Tests\\": "tests/"
}
},
"extra": {
"symfony": {
"require": "7.*"
}
}
}