-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.69 KB
/
Copy pathcomposer.json
File metadata and controls
57 lines (57 loc) · 1.69 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
{
"name": "augustash/module-remote-media",
"description": "Module to support remote media in Magento 2.",
"type": "magento2-module",
"require": {
"php": ">=8.1",
"magento/framework": ">=103.0",
"magento/module-catalog": "@stable",
"magento/module-cms": "@stable",
"magento/module-email": "@stable",
"magento/module-store": "@stable",
"magento/module-swatches": "@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\\RemoteMedia\\": "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:stan",
"@test:phpcs"
],
"test:lint": "vendor/bin/parallel-lint src/",
"test:mess": "vendor/bin/phpmd src/ text phpmd.xml.dist",
"test:phpcs": "vendor/bin/phpcs --runtime-set testVersion 8.3- -s src/",
"test:stan": "vendor/bin/phpstan analyze -c phpstan.neon.dist --no-interaction --no-progress --memory-limit=-1 src/",
"test:static-analysis": [
"@test:lint",
"@test:stan"
]
}
}