-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
75 lines (75 loc) · 2.09 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "elgentos/magento2-imgproxy",
"description": "Improxy extension for Magento 2 to process images",
"type": "magento2-module",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "elgentos ecommerce solutions",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"elgentos/imgproxy-php": "^3.0",
"magento/framework": "^103.0",
"magento/module-catalog-graph-ql": "^100.4",
"magento/module-search": "^101.1",
"magento/module-store": "^101.1"
},
"require-dev": {
"bitexpert/phpstan-magento": "^0.30.1",
"elgentos/testing-suite": "*",
"phpstan/extension-installer": "^1.3",
"symfony/finder": "^6.0",
"youwe/coding-standard-magento2": "^2.0.0"
},
"autoload": {
"psr-4": {
"Elgentos\\Imgproxy\\": "src/"
},
"files": [
"src/registration.php"
]
},
"autoload-dev": {
"psr-4": {
"Elgentos\\Imgproxy\\Test\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"magento/magento-composer-installer": true,
"phpro/grumphp-shim": true,
"digitalrevolution/php-codesniffer-baseline": true,
"elgentos/coding-standard-phpstorm": true,
"youwe/testing-suite": true,
"phpstan/extension-installer": true
}
},
"archive": {
"exclude": [
"/.gitignore",
"/tests",
"/grumphp.yml",
"/pdepend.xml",
"/phpstan.neon",
"/phpunit.xml",
"/phpcs.xml",
"/phpmd.xml",
"/package.json",
"/.eslintrc.json",
"/.eslintignore"
]
},
"repositories": [
{
"type": "composer",
"url": "https://mirror.mage-os.org/"
}
]
}