-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.16 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
{
"name": "patchlevel/event-sourcing-psalm-plugin",
"type": "psalm-plugin",
"license": "MIT",
"description": "psalm plugin for patchlevel/event-sourcing",
"keywords": [
"event-sourcing",
"psalm"
],
"homepage": "https://github.com/patchlevel/event-sourcing-psalm-plugin",
"authors": [
{
"name": "Daniel Badura",
"email": "[email protected]"
},
{
"name": "David Badura",
"email": "[email protected]"
}
],
"require": {
"php": "~8.1 || ~8.2 || ~8.3",
"vimeo/psalm": "^5.0.0",
"ext-simplexml": "*"
},
"require-dev": {
"patchlevel/coding-standard": "^1.3.0",
"patchlevel/event-sourcing": "^3.0.0",
"roave/security-advisories": "dev-master",
"symfony/var-dumper": "^7.0.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"Patchlevel\\EventSourcingPsalmPlugin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Patchlevel\\EventSourcingPsalmPlugin\\Tests\\": "tests/"
}
}
}