-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.78 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
{
"name": "magedin/module-frenet-rates-conversion",
"version": "1.0.0",
"description": "This module can be used to convert Frenet quotations from a given currency, like US Dollar, to the current store currency.",
"type": "magento2-module",
"keywords": [
"frenet",
"dollar-conversion",
"freight",
"freight-cotation"
],
"require": {
"php": "^7.2.0||^8.0.0",
"magento/framework": "102.0.*||103.0.*",
"frenet/frenet-magento2": "^2.1.0"
},
"require-dev": {
"magedin/magento2-develop-tools": "~1.0.0"
},
"license": [
"MIT"
],
"authors": [
{
"name": "MagedIn Technology",
"email": "support@magedin.com"
}
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"MagedIn\\FrenetRatesConversion\\": ""
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
},
{
"type": "composer",
"url": "https://magedin.repo.repman.io"
}
],
"scripts": {
"coding-standard": [
"@phpcs",
"@phpmd"
],
"tests": [
"@coding-standard",
"@phpunit"
],
"phpunit": "vendor/bin/phpunit Test",
"phpcs-configure": [
"vendor/bin/phpcs --config-set installed_paths vendor/magento/magento-coding-standard"
],
"phpcs": [
"@phpcs-configure",
"vendor/bin/phpcs --standard=Magento2 --severity=1 --extensions=php Console Model Test"
],
"phpmd": "vendor/bin/phpmd Plugin/, Model/ text cleancode,codesize,controversial,design,naming,unusedcode"
}
}