-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 1010 Bytes
/
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
{
"name": "tweakwise/magento2-tweakwise-js",
"license": "OSL-3.0",
"description": "Magento 2 module for Tweakwise JS",
"type": "magento2-module",
"require": {
"php": "^8.0"
},
"require-dev": {
"magento/framework": "*",
"phpro/grumphp-shim": "^2.7",
"squizlabs/php_codesniffer": "^3.10",
"phpmd/phpmd": "^2.15",
"slevomat/coding-standard": "^8.15",
"magento-ecg/coding-standard": "^4.5"
},
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"Tweakwise\\TweakwiseJs\\": "src/"
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"config": {
"allow-plugins": {
"phpro/grumphp-shim": true,
"magento/composer-dependency-version-audit-plugin": false,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}