-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
65 lines (65 loc) · 1.63 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
{
"name": "elgentos/module-eu-tax-rates",
"description": "Magento 2 extension to import EU taxes into Magento.",
"type": "magento2-module",
"license": "OSL-3.0",
"authors": [
{
"name": "Arjen Miedema",
"email": "arjen@elgentos.nl"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4||^8.0",
"magento/framework": "^103.0",
"magento/module-tax": "^100.4",
"magento/module-directory": "^100.4"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"autoload": {
"psr-4": {
"Elgentos\\EuTaxRates\\": "src/"
},
"files": [
"src/registration.php"
]
},
"autoload-dev": {
"psr-4": {
"Elgentos\\EuTaxRates\\Test\\": "tests/"
}
},
"require-dev": {
"youwe/coding-standard-magento2": "^1.7.0",
"youwe/testing-suite": "@stable"
},
"archive": {
"exclude": [
"/.gitignore",
"/grumphp.yml",
"/pdepend.xml",
"/phpstan.neon",
"/phpunit.xml",
"/phpcs.xml",
"/phpmd.xml",
"/package.json",
"/.eslintrc.json",
"/.eslintignore"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true,
"phpro/grumphp-shim": true,
"youwe/coding-standard-phpstorm": true,
"youwe/testing-suite": true
}
}
}