-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 913 Bytes
/
composer.json
File metadata and controls
43 lines (43 loc) · 913 Bytes
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
{
"name": "nette/phpstan-rules",
"type": "phpstan-extension",
"description": "🐘 PHPStan rules and type extensions for Nette libraries",
"homepage": "https://nette.org",
"keywords": ["phpstan", "nette", "static analysis"],
"license": ["BSD-3-Clause", "GPL-2.0-only", "GPL-3.0-only"],
"authors": [
{
"name": "David Grudl",
"homepage": "https://davidgrudl.com"
}
],
"require": {
"php": "8.1 - 8.5",
"phpstan/phpstan": "^2.1.40"
},
"require-dev": {
"nette/assets": "^1.0",
"nette/component-model": "^3.1",
"nette/database": "^3.2",
"nette/forms": "^3.2",
"nette/schema": "^1.3",
"nette/tester": "^2.6"
},
"autoload": {
"psr-4": {
"Nette\\PHPStan\\": "src"
}
},
"scripts": {
"phpstan": "phpstan analyse",
"tester": "tester tests -s"
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
},
"branch-alias": { "dev-master": "1.0-dev" }
}
}