-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 957 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 957 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
{
"name": "avto-dev/php-cs-fixer",
"description": "A tool to automatically fix PHP code style",
"keywords": [
"codestyle",
"cs",
"fixer",
"avto-dev"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Avto Develop",
"homepage": "https://github.com/avto-dev"
}
],
"require": {
"php": "^8.0",
"friendsofphp/php-cs-fixer": "^v3.54.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10"
},
"scripts": {
"phpstan": "@php ./vendor/bin/phpstan analyze -c ./phpstan.neon.dist --no-progress --ansi",
"test": [
"@phpstan"
]
},
"config": {
"sort-packages": true
},
"support": {
"issues": "https://github.com/avto-dev/php-cs-fixer/issues",
"source": "https://github.com/avto-dev/php-cs-fixer"
},
"bin": [
"cs-fix"
]
}