-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
79 lines (79 loc) · 2.23 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "patchlevel/event-sourcing",
"type": "library",
"license": "MIT",
"description": "A lightweight but also all-inclusive event sourcing library with a focus on developer experience",
"keywords": [
"event-sourcing",
"ddd"
],
"homepage": "https://event-sourcing.patchlevel.io",
"authors": [
{
"name": "Daniel Badura",
"email": "[email protected]"
},
{
"name": "David Badura",
"email": "[email protected]"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"doctrine/dbal": "^4.0.0",
"doctrine/migrations": "^3.3.2",
"patchlevel/hydrator": "^1.5.0",
"patchlevel/worker": "^1.2.0",
"psr/cache": "^2.0.0|^3.0.0",
"psr/clock": "^1.0",
"psr/event-dispatcher": "^1.0",
"psr/log": "^2.0.0|^3.0.0",
"psr/simple-cache": "^2.0.0|^3.0.0",
"ramsey/uuid": "^4.7",
"symfony/console": "^5.4.32|^6.4.1|^7.0.1",
"symfony/finder": "^5.4.27|^6.4.0|^7.0.0"
},
"require-dev": {
"ext-pdo_sqlite": "~8.1.0 || ~8.2.0 || ~8.3.0",
"cspray/phinal": "^2.0.0",
"doctrine/orm": "^2.18.0|^3.0.0",
"infection/infection": "^0.27.10",
"league/commonmark": "^2.4",
"patchlevel/coding-standard": "^1.3.0",
"patchlevel/event-sourcing-psalm-plugin": "^3.0.0",
"phpbench/phpbench": "^1.2.15",
"phpspec/prophecy-phpunit": "^2.1.0",
"phpstan/phpstan": "^1.10.49",
"phpunit/phpunit": "^10.5.2",
"psalm/plugin-phpunit": "^0.19.0",
"roave/infection-static-analysis-plugin": "^1.34.0",
"symfony/messenger": "^5.4.31|^6.4.0|^7.0.1",
"symfony/var-dumper": "^5.4.29|^6.4.0|^7.0.0",
"vimeo/psalm": "^5.17.0",
"wnx/commonmark-markdown-renderer": "^1.4"
},
"suggest": {
"patchlevel/event-sourcing-psalm-plugin": "for psalm support"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true,
"composer/package-versions-deprecated": true
}
},
"autoload": {
"psr-4": {
"Patchlevel\\EventSourcing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Patchlevel\\EventSourcing\\Tests\\": "tests/"
}
}
}