-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.99 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.99 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"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 || ~8.4.0 || ~8.5.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 || ^8.0.0",
"symfony/asset-mapper": "^6.4.1 || ^7.0.1 || ^8.0.0",
"symfony/config": "^5.4.31 || ^6.4.0 || ^7.0.0 || ^8.0.0",
"symfony/dependency-injection": "^5.4.33 || ^6.4.1 || ^7.0.1 || ^8.0.0",
"symfony/expression-language": "^5.4.33 || ^6.4.1 || ^7.0.1 || ^8.0.0",
"symfony/http-kernel": "^5.4.33 || ^6.4.1 || ^7.0.1 || ^8.0.0",
"symfony/routing": "^5.4.33 || ^6.4.1 || ^7.0.1 || ^8.0.0",
"symfony/var-dumper": "^5.4.29 || ^6.4.0 || ^7.0.0 || ^8.0.0",
"twig/twig": "^3.20.0"
},
"require-dev": {
"infection/infection": "^0.32.0",
"patchlevel/coding-standard": "^1.3.0",
"phpstan/phpstan": "^2.1.32",
"phpstan/phpstan-symfony": "^2.0.8",
"phpunit/phpunit": "^11.5.45",
"roave/security-advisories": "dev-master"
},
"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
}