-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
31 lines (31 loc) · 1021 Bytes
/
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
{
"name": "creatuity/magento-quality-tools",
"description": "The composer package basing on GrumPHP tool with pre-defined configuration for Magento projects",
"type": "library",
"require": {
"php": "^7.2.0 || ^8.1.0",
"phpstan/phpstan": "1.8.*",
"phpstan/extension-installer": "^1.1",
"bitexpert/phpstan-magento": "^0.24.0",
"overtrue/phplint": "^3.1",
"friendsofphp/php-cs-fixer": "~2.16 || ~3.3",
"magento/magento-coding-standard": "*",
"squizlabs/php_codesniffer": "^3.5.4",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpmd/phpmd": "^2.12",
"phpro/grumphp-shim": "^1.13",
"symfony/yaml": "~5.3 || ~6.0",
"seld/jsonlint": "^1.9"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"phpro/grumphp-shim": true
}
},
"autoload": {
"psr-4": {
"Creatuity\\MagentoQualityTools\\" : "src"
}
}
}