forked from elgentos/magento2-consentmode-v2
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.73 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
{
"name": "elgentos/magento2-consentmode-v2",
"description": "Consent Mode V2 magento extension for the Hyva theme",
"type": "magento2-module",
"authors": [
{
"name": "Wouter Steenmeijer",
"email": "wouter@elgentos.nl"
}
],
"license": [
"OSL-3.0",
"AFL-3.0"
],
"require": {
"php": ">=8.1.0",
"magento/framework": "^103.0",
"magento/module-cookie": "^100.4",
"magento/module-store": "^101.1"
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"Elgentos\\ConsentModeV2\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Elgentos\\ConsentModeV2\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true,
"elgentos/coding-standard-phpstorm": true,
"phpro/grumphp-shim": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"youwe/testing-suite": true,
"digitalrevolution/php-codesniffer-baseline": 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",
"/tests"
]
}
}