-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.77 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.77 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
{
"name": "space48/magento2-code-quality",
"type": "codesniffer-standard",
"description": "Provides rulesets for phpmd, phpcs and eslint that overrides some Magento sniffs and provides some new ones as well",
"license": "proprietary",
"require": {
"php": "^8",
"phpro/grumphp": "^2",
"symfony/dom-crawler": "^7",
"magento/magento-coding-standard": "*",
"phpmd/phpmd": "^2",
"squizlabs/php_codesniffer": "^3"
},
"require-dev": {
},
"config": {
"platform": {
"php": "8.4"
}
},
"authors": [
{
"name": "Stepan Kechedzhi",
"email": "stepan.kechedzhi@space48.com"
}
],
"keywords": [
"standards"
],
"autoload": {
"psr-4": {
"Space48\\CodeQuality\\": "src",
"Space48\\CodeQuality\\RuleSets\\": "rulesets",
"Space48\\CodeQuality\\Utils\\": "utils",
"PHP_CodeSniffer\\": "../../squizlabs/php_codesniffer/src",
"Magento\\": "../magento-coding-standard/Magento",
"EcgM2\\": "../../magento-ecg/coding-standard/EcgM2",
"Ecg\\": "../../magento-ecg/coding-standard/Ecg"
}
},
"autoload-dev": {
"psr-4": {
"PHP_CodeSniffer\\": "vendor/squizlabs/php_codesniffer/src",
"Magento\\": "vendor/magento/magento-coding-standard/Magento",
"EcgM2\\": "vendor/magento-ecg/coding-standard/EcgM2",
"Ecg\\": "vendor/magento-ecg/coding-standard/Ecg"
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
},
{
"type": "composer",
"url": "https://packagist.org/"
}
]
}