-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
65 lines (65 loc) · 1.77 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": "tweakwise/magento2-tweakwise-export",
"license": "OSL-3.0",
"description": "Magento 2 module for Tweakwise export",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0",
"laminas/laminas-http": "^2.15.0"
},
"require-dev": {
"bitexpert/phpstan-magento": "^0.30.1",
"fzaninotto/faker": "^1.7",
"magento/framework": "^103.0",
"phpstan/extension-installer": "^1.3",
"symfony/config": "^6.4",
"symfony/finder": "^6.4.0",
"youwe/coding-standard-magento2": "^2.0.0",
"youwe/testing-suite": "^2.17"
},
"replace": {
"emico/tweakwise-export": "v4.2.4"
},
"type": "magento2-module",
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Tweakwise\\Magento2TweakwiseExport\\": ""
}
},
"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",
"/tests",
"/grumphp.yml",
"/pdepend.xml",
"/phpstan.neon",
"/phpunit.xml",
"/phpcs.xml",
"/phpmd.xml",
"/package.json",
"/.eslintrc.json",
"/.eslintignore"
]
}
}