forked from ecsphp/ecs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 2.59 KB
/
Copy pathcomposer.json
File metadata and controls
81 lines (81 loc) · 2.59 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "symplify/easy-coding-standard",
"description": "Use Coding Standard with 0-knowledge of PHP-CS-Fixer and PHP_CodeSniffer.",
"license": "MIT",
"keywords": ["static analysis", "code style", "automation", "fixer"],
"bin": [
"bin/ecs"
],
"require": {
"php": ">=8.1",
"composer/xdebug-handler": "^3.0",
"friendsofphp/php-cs-fixer": "^3.12",
"nette/utils": "^3.2",
"squizlabs/php_codesniffer": "^3.7.1",
"sebastian/diff": "5.0 as 4.0.4",
"symfony/config": "^6.2",
"symfony/console": "^6.2",
"symfony/dependency-injection": "6.1.*",
"symfony/finder": "^6.2",
"symplify/autowire-array-parameter": "^11.1",
"symplify/coding-standard": "^11.3",
"symplify/easy-parallel": "^11.1",
"symplify/symplify-kernel": "^11.1",
"symplify/package-builder": "^11.2",
"webmozart/assert": "^1.11"
},
"require-dev": {
"cweagans/composer-patches": "^1.7",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9.4",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.2",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpunit/phpunit": "^10.0",
"rector/rector": "^0.15.2",
"symplify/easy-ci": "^11.1",
"symplify/phpstan-extensions": "^11.1",
"tracy/tracy": "^2.9"
},
"autoload": {
"psr-4": {
"Symplify\\EasyCodingStandard\\": [
"src",
"packages"
]
}
},
"autoload-dev": {
"psr-4": {
"Symplify\\EasyCodingStandard\\Tests\\": [
"tests",
"packages-tests"
]
}
},
"extra": {
"enable-patching": true,
"patches": {
"symfony/dependency-injection": [
"https://raw.githubusercontent.com/symplify/vendor-patch-files/main/patches/generic-php-config-loader.patch"
]
}
},
"config": {
"sort-packages": true,
"platform-check": false,
"allow-plugins": {
"cweagans/composer-patches": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"check-cs": "bin/ecs check --ansi",
"fix-cs": "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
}