-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
54 lines (54 loc) · 1.5 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
{
"name": "baldwin/magento2-module-image-cleanup",
"description": "Magento 2 module which can cleanup old image files that are no longer being used",
"license": "MIT",
"type": "magento2-module",
"authors": [
{
"name": "Pieter Hoste",
"email": "[email protected]",
"role": "Problem Solver"
}
],
"require": {
"php": "~7.3.0 || ~7.4.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"magento/framework": "^102.0.4 || ^103.0",
"magento/module-catalog": "^103.0.4 || ^104.0",
"magento/module-eav": "^102.0.4",
"magento/module-store": "^101.0.4",
"magento/module-theme": "^101.0.4",
"symfony/console": "^4.0 || ^5.0 || ^6.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.7",
"ergebnis/composer-normalize": "^2.17"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"autoload": {
"psr-4": {
"Baldwin\\ImageCleanup\\": ""
},
"files": [
"registration.php"
]
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
"ergebnis/composer-normalize": true,
"magento/composer-dependency-version-audit-plugin": true
},
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true
}
}
}