-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 884 Bytes
/
Copy pathcomposer.json
File metadata and controls
43 lines (43 loc) · 884 Bytes
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
{
"name": "xprt64/dudulina",
"description": "CQRS with Event Sourcing mini framework for PHP",
"minimum-stability": "stable",
"license": "proprietary",
"keywords": [
"CQRS",
"DDD",
"Domain driven design",
"Command query responsibility segregation",
"Event sourcing",
"Framework",
"Scalable"
],
"authors": [
{
"name": "Constantin GALBENU",
"email": "xprt64@gmail.com"
}
],
"require": {
"php": "^8.0",
"psr/container": "^1.0",
"xprt64/types": "^1.0",
"xprt64/iterator": "^1.0",
"psr/log": "^1.0",
"xprt64/code-analysis": "^1.1.15",
"xprt64/selector": "^0.0.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10"
},
"autoload": {
"psr-4": {
"Dudulina\\": "src/Dudulina/"
}
},
"autoload-dev": {
"psr-4": {
"tests\\Dudulina\\": "tests/Dudulina/"
}
}
}