-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
47 lines (47 loc) · 1.35 KB
/
composer.json
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
{
"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.3",
"ext-tokenizer": "*",
"friendsofphp/php-cs-fixer": "^3.58.1",
"nette/utils": "^4.0",
"php-parallel-lint/php-parallel-lint": "^1.3.1",
"phpstan/phpstan": "^1.11.7",
"slevomat/coding-standard": "^8.13.1",
"squizlabs/php_codesniffer": "^3.6.2",
"symfony/finder": "^6.4",
"symplify/easy-coding-standard": "^12.2.0"
},
"require-dev": {
"phpunit/phpunit": "^11.2.1",
"nikic/php-parser": "^5.1"
},
"autoload": {
"psr-4": {
"Shopsys\\CodingStandards\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\CodingStandards\\": "tests/"
}
},
"suggest": {
"zalas/phpunit-injector": "Needed if you want to use PhpStan extension to understand injected dependencies in tests"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}