-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.39 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.39 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
{
"name": "valantic/php-cs-fixer-config",
"description": "Provides a standard php-cs-fixer configuration used in projects built by valantic.",
"license": "MIT",
"require": {
"php": "^8.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.88.2",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.31",
"phpstan/phpstan-deprecation-rules": "^2.0.3",
"phpstan/phpstan-strict-rules": "^2.0.7",
"phpunit/phpunit": "^12.4.1",
"rector/rector": "^2.2",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"Valantic\\PhpCsFixerConfig\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Valantic\\PhpCsFixerConfig\\Tests\\": "tests"
}
},
"scripts": {
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"phpstan": "phpstan analyse",
"test": "phpunit",
"rector": "rector process",
"rector-dry-run": "rector process --dry-run",
"check": [
"@cs-check",
"@phpstan",
"@rector-dry-run",
"@test"
],
"post-update-cmd": "composer bump -D"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
}
}