-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.01 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
{
"name": "hxv/phpstan-event-dispatcher-exceptions",
"type": "phpstan-extension",
"description": "PHPStan extension and rules for exceptions in Symfony EventDispatcher.",
"require": {
"php": "^7.1|^8.0",
"phpstan/phpstan": "^0.12.87",
"symfony/event-dispatcher": "^4.3|^5.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-strict-rules": "^0.12.9"
},
"license": "WTFPL",
"authors": [
{
"name": "Michał Włodarczyk",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"hxv\\PHPStanEventDispatcherExceptions\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"hxv\\PHPStanEventDispatcherExceptions\\Tests\\": "tests"
}
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
}
}