-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.25 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
{
"name": "resolve/phpstan-phpoption",
"description": "PHPStan extension for phpoption/phpoption",
"keywords": ["phpstan", "phpoption", "option", "static analysis"],
"type": "phpstan-extension",
"license": "MIT",
"authors": [
{
"name": "Choraimy Kroonstuiver",
"homepage": "https://github.com/axlon"
}
],
"require": {
"php": "^8.1",
"phpstan/phpstan": "^1.12"
},
"require-dev": {
"phpoption/phpoption": "^1.9",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-deprecation-rules": "^1.2",
"phpstan/phpstan-strict-rules": "^1.6",
"phpunit/phpunit": "^10.5 || ^11.3",
"slevomat/coding-standard": "^8.15"
},
"autoload": {
"psr-4": {
"Resolve\\PHPStan\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
}
}