-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
58 lines (58 loc) · 1.7 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
50
51
52
53
54
55
56
57
58
{
"name": "symplify/phpstan-extensions",
"type": "phpstan-extension",
"description": "Pre-escaped error messages in 'symplify' error format, container aware test case and other useful extensions for PHPStan",
"license": "MIT",
"require": {
"php": ">=8.1",
"phpstan/phpstan": "^1.10.52"
},
"require-dev": {
"illuminate/container": "^10.39",
"phpstan/extension-installer": "^1.3",
"phpunit/phpunit": "^10.3",
"rector/rector": "^0.18",
"symfony/dependency-injection": "^6.4",
"symfony/finder": "^6.2",
"symplify/easy-coding-standard": "^12.0",
"symplify/phpstan-rules": "^12.4",
"tomasvotruba/class-leak": "^0.2",
"tracy/tracy": "^2.9"
},
"autoload": {
"psr-4": {
"Symplify\\PHPStanExtensions\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Symplify\\PHPStanExtensions\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-main": "11.2-dev"
},
"phpstan": {
"includes": [
"config/config.neon"
]
}
},
"scripts": {
"check-cs": "vendor/bin/ecs check --ansi",
"fix-cs": "vendor/bin/ecs check --fix --ansi",
"phpstan": "vendor/bin/phpstan analyse --ansi --error-format symplify",
"rector": "vendor/bin/rector process --dry-run --ansi"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"platform-check": false,
"allow-plugins": {
"cweagans/composer-patches": true,
"phpstan/extension-installer": true
}
}
}