forked from EmicoEcommerce/Magento2AttributeLanding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.71 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
{
"name": "emico/m2-attributelanding",
"description": "Attribute landing pages for Magento 2",
"require": {
"php": ">=8.0 <8.3",
"magento/module-sitemap": "^100.2||^100.4",
"magento/module-catalog": "^102.0||^103.0||^104.0"
},
"require-dev": {
"symfony/finder": "6.4.0",
"youwe/testing-suite": "^2.18",
"youwe/coding-standard-magento2": "^2.0.0",
"phpstan/extension-installer": "^1.3",
"bitexpert/phpstan-magento": "^0.30.1"
},
"prefer-stable": true,
"type": "magento2-module",
"suggest": {
"emico/m2-attributelanding-tweakwise": "Install to use attributelanding page in combination with Tweakwise"
},
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"Emico\\AttributeLanding\\": "src"
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true,
"youwe/coding-standard-phpstorm": true,
"phpro/grumphp-shim": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"youwe/testing-suite": true,
"phpstan/extension-installer": true
}
},
"archive": {
"exclude": [
"/.gitignore",
"/grumphp.yml",
"/pdepend.xml",
"/phpstan.neon",
"/phpunit.xml",
"/phpcs.xml",
"/phpmd.xml",
"/package.json",
"/.eslintrc.json",
"/.eslintignore"
]
}
}