-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
82 lines (82 loc) · 2.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "frenet/frenet-magento2",
"type": "magento2-module",
"version": "2.4.7.5",
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Frenet\\Shipping\\": ""
}
},
"description":"Integrate your Magento 2 with Frenet Services in a simple way.",
"repositories": {
"mage": {
"type": "composer",
"url": "https://repo.magento.com",
"exclude": [ "frenet/frenet-magento2", "frenet/frenet-php" ]
},
"packagist": {
"type": "composer",
"url": "https://packagist.org"
}
},
"require": {
"php": "^7.0|>=8.0",
"frenet/frenet-php": "^1.3.1",
"symfony/finder": "^v6.4",
"magento/framework": "^101.0.0|^102.0.0|^103.0.0|^104.0.0",
"magento/module-catalog": "^101.0.0|^102.0.0|^103.0.0|^104.0.0",
"magento/module-quote": "^101.0.0|^102.0.0|^103.0.0|^104.0.0",
"magento/module-shipping": "^100.0.0",
"magento/module-directory": "^100.0.0",
"magento/module-bundle": "^101.0.0|^102.0.0|^103.0.0|^104.0.0",
"magento/module-grouped-product": "^100.0.0",
"magento/module-configurable-product": "^100.0.0",
"magento/module-downloadable": "^100.0.0",
"magento/module-store": "^101.0.0"
},
"require-dev": {
"magento/magento-coding-standard": "~4.0.0",
"phpmd/phpmd": "@stable"
},
"license": "proprietary",
"suggest": {},
"authors": [
{
"name": "Tiago Sampaio",
"email": "[email protected]",
"homepage": "http://tiagosampaio.com",
"role": "Magento Architect"
}
],
"support": {
"email": "[email protected]"
},
"minimum-stability": "stable",
"scripts": {
"tests": [
"@coding-standard",
"@phpunit"
],
"coding-standard": [
"@phpcs",
"@phpmd"
],
"phpunit" : "vendor/bin/phpunit Test",
"phpmd": "vendor/bin/phpmd Service/,Model/,Setup/,Controller/,Block/,ViewModel/ text cleancode,codesize,controversial,design,naming,unusedcode",
"phpcs-configure": [
"vendor/bin/phpcs --config-set installed_paths vendor/magento/magento-coding-standard"
],
"phpcs": [
"@phpcs-configure",
"vendor/bin/phpcs --standard=Magento2 --severity=8 --extensions=php Service Model Setup Controller Block ViewModel"
]
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true
}
}
}