-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.57 KB
/
Copy pathcomposer.json
File metadata and controls
55 lines (55 loc) · 1.57 KB
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
{
"name": "matchory/coding-style",
"description": "Shared code style configuration for Matchory projects: Pint, PHPStan and Rector presets.",
"type": "phpstan-extension",
"license": "MIT",
"authors": [
{
"name": "Matchory GmbH",
"email": "info@matchory.com",
"homepage": "https://matchory.com"
}
],
"require": {
"php": "^8.5",
"laravel/pint": "^1.27",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1.22",
"rector/rector": "^2.1.3",
"tomasvotruba/cognitive-complexity": "^1.1"
},
"require-dev": {
"driftingly/rector-laravel": "^2.0.6",
"nette/neon": "^3.4",
"pestphp/pest-plugin-rector": "^5.0"
},
"suggest": {
"driftingly/rector-laravel": "Required by the Rector `laravel` preset",
"larastan/larastan": "Required by the PHPStan `laravel.neon` preset",
"pestphp/pest-plugin-rector": "Required by the Rector `pest` preset",
"pestphp/pest": "Required by the PHPStan `pest.neon` preset"
},
"autoload": {
"psr-4": {
"Matchory\\CodingStyle\\": "php/src/"
}
},
"bin": [
"php/bin/matchory-coding-style"
],
"extra": {
"phpstan": {
"includes": [
"php/phpstan/extension.neon"
]
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}