-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.07 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.07 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
{
"name": "fruitcake/magento2-custom-image-url",
"description": "Magento2 Custom Image URLS for the catalog",
"keywords": [
"magento",
"magento2",
"image",
"catalog",
"cdn",
"imgproxy"
],
"license": [
"MIT"
],
"type": "magento2-module",
"authors": [
{
"name": "Fruitcake",
"email": "info@fruitcake.nl"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.13"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Fruitcake\\CustomImageUrl\\": ""
}
},
"scripts": {
"check-style": "phpcs -p --standard=PSR12 --exclude=Generic.Files.LineLength --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR12 --exclude=Generic.Files.LineLength --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}