-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.38 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.38 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
{
"name": "shopsys/coding-standards",
"type": "library",
"description": "Coding standards definition compatible with PSR-2",
"keywords": [
"code style",
"coding standards",
"PSR-2",
"code quality"
],
"license": "MIT",
"authors": [
{
"name": "Shopsys",
"homepage": "https://www.shopsys.com/"
}
],
"require": {
"php": "^8.5",
"ext-tokenizer": "*",
"friendsofphp/php-cs-fixer": "^3.58.1",
"nette/utils": "^4.0",
"php-parallel-lint/php-parallel-lint": "^1.3.1",
"phpstan/phpstan": "^2.1.16",
"slevomat/coding-standard": "^8.27",
"squizlabs/php_codesniffer": "^4.0",
"symfony/finder": "^7.4",
"symplify/easy-coding-standard": "^13.0"
},
"require-dev": {
"phpunit/phpunit": "^12.5",
"nikic/php-parser": "^5.1"
},
"autoload": {
"psr-4": {
"Shopsys\\CodingStandards\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\CodingStandards\\": "tests/"
}
},
"suggest": {
"shopsys/phpunit-injector": "Needed if you want to use PhpStan extension to understand injected dependencies in tests"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}