-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
67 lines (67 loc) · 1.83 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": "tweakwise/magento2-tweakwise",
"license": "OSL-3.0",
"description": "Magento 2 module for Tweakwise integration",
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-pcre": "*",
"ext-simplexml": "*",
"ext-libxml": "*",
"tweakwise/magento2-tweakwise-export": ">=4.0",
"guzzlehttp/guzzle": ">=6.0",
"guzzlehttp/promises": ">=1.4"
},
"type": "magento2-module",
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Tweakwise\\Magento2Tweakwise\\": ""
}
},
"replace": {
"emico/tweakwise": "v4.3.1"
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require-dev": {
"bitexpert/phpstan-magento": "^0.30.1",
"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"
},
"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"
]
}
}