-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (68 loc) · 1.86 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
{
"name": "patchlevel/event-sourcing-admin-bundle",
"type": "symfony-bundle",
"license": "MIT",
"description": "symfony admin ui for patchlevel/event-sourcing-bundle",
"keywords": [
"event-sourcing",
"bundle",
"symfony",
"admin"
],
"homepage": "https://github.com/patchlevel/event-sourcing-admin-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",
"patchlevel/event-sourcing": "^3.8.0",
"patchlevel/event-sourcing-bundle": "^3.7.0",
"symfony/asset": "^5.4.33|^6.4.1|^7.0.1",
"symfony/asset-mapper": "^6.4.1|^7.0.1",
"symfony/config": "^5.4.31|^6.4.0|^7.0.0",
"symfony/dependency-injection": "^5.4.33|^6.4.1|^7.0.1",
"symfony/expression-language": "^5.4.33|^6.4.1|^7.0.1",
"symfony/http-kernel": "^5.4.33|^6.4.1|^7.0.1",
"symfony/var-dumper": "^5.4.29|^6.4.0|^7.0.0",
"twig/twig": "^3.5.0"
},
"require-dev": {
"infection/infection": "^0.27.0",
"patchlevel/coding-standard": "^1.3.0",
"phpspec/prophecy-phpunit": "^2.1.0",
"phpstan/phpstan": "^2.1.0",
"phpunit/phpunit": "^10.5.2",
"psalm/plugin-symfony": "^5.2",
"roave/security-advisories": "dev-master",
"vimeo/psalm": "^5.17.0"
},
"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\\EventSourcingAdminBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Patchlevel\\EventSourcingAdminBundle\\Tests\\": "tests/"
}
},
"prefer-stable": true
}