forked from FrenetGatewaydeFretes/frenet-magento2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
73 lines (73 loc) · 2.24 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
{
"name": "frenet/frenet-magento2",
"description":"Integrate your Magento 2 with Frenet Services in a simple way.",
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"require": {
"php": "^7.0",
"frenet/frenet-php": "^1.2.1",
"symfony/finder": "^v5.0.0",
"magento/framework": "^101.0.0|^102.0.0|^103.0.0",
"magento/module-catalog": "*",
"magento/module-quote": "*",
"magento/module-shipping": "*",
"magento/module-directory": "*",
"magento/module-bundle": "*",
"magento/module-grouped-product": "*",
"magento/module-configurable-product": "*",
"magento/module-downloadable": "*",
"magento/module-store": "*"
},
"require-dev": {
"magento/magento-coding-standard": "~4.0.0",
"magento/magento2-functional-testing-framework": "*",
"phpmd/phpmd": "@stable",
"phpunit/phpunit": "~6.5.0"
},
"license": "proprietary",
"suggest": {},
"type": "magento2-module",
"authors": [
{
"name": "Tiago Sampaio",
"email": "[email protected]",
"homepage": "http://tiagosampaio.com",
"role": "Magento Architect"
}
],
"support": {
"email": "[email protected]"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Frenet\\Shipping\\": ""
}
},
"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"
]
}
}