-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
46 lines (46 loc) · 1.1 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
{
"name": "slam/phpstan-extensions",
"description": "Slam extension of phpstan",
"license": "MIT",
"type": "phpstan-extension",
"authors": [
{
"name": "Filippo Tessarotto",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "~8.3.0 || ~8.4.0",
"phpstan/phpstan": "^2"
},
"require-dev": {
"nette/di": "^3.2.3",
"nette/neon": "^3.4.4",
"nikic/php-parser": "^4.19.2 || ^5.3.1",
"phpstan/phpstan-phpunit": "^2",
"phpunit/phpunit": "^11.4.3",
"slam/php-cs-fixer-extensions": "^3.12.0"
},
"autoload": {
"psr-4": {
"SlamPhpStan\\": "lib/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
],
"files": [
"tests/TestAsset/SymfonyFilesystemRule/mkdir.php",
"tests/TestAsset/SymfonyProcessRule/shell_exec.php"
]
},
"extra": {
"phpstan": {
"includes": [
"conf/slam-rules.neon"
]
}
}
}