-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.2 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.2 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
{
"name": "patchlevel/event-sourcing-phpstan-extension",
"type": "phpstan-extension",
"license": "MIT",
"description": "phpstan extension for patchlevel/event-sourcing",
"keywords": [
"event-sourcing",
"phpstan"
],
"homepage": "https://github.com/patchlevel/event-sourcing-phpstan-extension",
"authors": [
{
"name": "Daniel Badura",
"email": "daniel.badura@patchlevel.de"
},
{
"name": "David Badura",
"email": "david.badura@patchlevel.de"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
"phpstan/phpstan": "^2.1.20"
},
"require-dev": {
"patchlevel/coding-standard": "^1.3.0",
"patchlevel/event-sourcing": "^3.4.0",
"phpstan/phpstan-strict-rules": "^2.0.4",
"roave/security-advisories": "dev-master"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"Patchlevel\\EventSourcingPHPStanExtension\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Patchlevel\\EventSourcingPHPStanExtension\\Tests\\": "tests/"
}
}
}