-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.58 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "augustash/module-goto-sku",
"description": "Magento 2 Product SKU Redirection",
"license": [
"MIT"
],
"type": "magento2-module",
"homepage": "https://github.com/augustash/magento2-module-goto-sku",
"require": {
"php": ">= 8.1.0",
"magento/framework": "*",
"magento/module-catalog": "@stable"
},
"require-dev": {
"augustash/magento2-quality-suite": "^1.0"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
},
{
"type": "composer",
"url": "https://repo.packagist.com/augustash/magento/"
}
],
"autoload": {
"psr-4": {
"Augustash\\GotoSku\\": "src/"
},
"files": [
"src/registration.php"
]
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"scripts": {
"test:all": [
"@test:lint",
"@test:mess",
"@test:stan",
"@test:style"
],
"test:lint": "vendor/bin/parallel-lint --exclude vendor src/",
"test:mess": "vendor/bin/phpmd src/ text phpmd.xml.dist",
"test:stan": "vendor/bin/phpstan analyze --no-interaction --no-progress",
"test:static-analysis": [
"@test:lint",
"@test:stan"
],
"test:style": "vendor/bin/phpcs -s src/"
}
}