-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
80 lines (80 loc) · 2.26 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
80
{
"name": "patchlevel/event-sourcing-bundle",
"type": "symfony-bundle",
"license": "MIT",
"description": "symfony bundle for patchlevel/event-sourcing",
"keywords": [
"event-sourcing"
],
"homepage": "https://github.com/patchlevel/event-sourcing-bundle",
"authors": [
{
"name": "Daniel Badura",
"email": "daniel.badura@patchlevel.de"
},
{
"name": "David Badura",
"email": "david.badura@patchlevel.de"
}
],
"require": {
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"patchlevel/event-sourcing": "^3.10.0",
"symfony/cache": "^6.4.0|^7.0.0",
"symfony/config": "^6.4.0|^7.0.0",
"symfony/console": "^6.4.1|^7.0.1",
"symfony/dependency-injection": "^6.4.1|^7.0.1",
"symfony/event-dispatcher": "^6.4.1|^7.0.1",
"symfony/finder": "^6.4.0|^7.0.0",
"symfony/http-kernel": "^6.4.1|^7.0.1",
"symfony/messenger": "^6.4.0|^7.0.0"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"doctrine/migrations": "^3.3.2",
"doctrine/orm": "^2.19.4|^3.1.2",
"infection/infection": "^0.29.11",
"league/commonmark": "^2.4",
"patchlevel/coding-standard": "^1.3.0",
"phpspec/prophecy-phpunit": "^2.1.0",
"phpstan/phpstan": "^2.1.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^10.5.2",
"psalm/plugin-symfony": "^5.2.7",
"roave/security-advisories": "dev-master",
"symfony/uid": "^6.4.0|^7.0.0",
"symfony/var-dumper": "^6.4.0|^7.0.0",
"symfony/web-profiler-bundle": "^6.4.0|^7.0.0",
"vimeo/psalm": "^6.0.0",
"wnx/commonmark-markdown-renderer": "^1.4"
},
"suggest": {
"patchlevel/event-sourcing-admin-bundle": "for admin ui",
"patchlevel/event-sourcing-psalm-plugin": "for psalm integration"
},
"conflict": {
"doctrine/doctrine-bundle": "<2.8"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true
}
},
"autoload": {
"psr-4": {
"Patchlevel\\EventSourcingBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Patchlevel\\EventSourcingBundle\\Tests\\": "tests/"
}
},
"prefer-stable": true
}