forked from shipperhq/module-shipper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·64 lines (63 loc) · 1.71 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
{
"name": "shipperhq/module-shipper",
"description": "Magento Shipping integration with ShipperHQ",
"type": "magento2-module",
"version": "20.20.1",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"authors": [
{
"name": "ShipperHQ",
"email": "[email protected]",
"homepage": "http://www.Shipperhq.com"
},
{
"name": "Zowta LLC"
}
],
"support": {
"documentation": "http://docs.shipperhq.com"
},
"require": {
"magento/framework": ">=100.0",
"magento/module-store": ">=100.0",
"shipperhq/library-ws": "^20.3.0",
"shipperhq/library-shipper": "^20.6.0",
"shipperhq/module-common": "^20.6.0",
"shipperhq/module-logger": "^20.0"
},
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"ShipperHQ\\Shipper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ShipperHQ\\Shipper\\Test\\": "tests/unit/"
}
},
"archive": {
"exclude": ["/ZIP/"]
},
"require-dev": {
"phpunit/phpunit": "~5.3.0",
"phpmd/phpmd": "@stable",
"pdepend/pdepend": "^2.5",
"friendsofphp/php-cs-fixer": "~2.1.1",
"lusitanian/oauth": "~0.8.10",
"sebastian/phpcpd": "2.0.4",
"mikey179/vfsStream": "^1.6",
"phpro/grumphp": "^0.12.1",
"theseer/phpdox": "^0.10.1",
"phploc/phploc": "^4.0",
"squizlabs/php_codesniffer": "^3.2",
"jakub-onderka/php-parallel-lint": "^0.9.2",
"jakub-onderka/php-console-highlighter": "^0.3.2",
"magento-ecg/coding-standard": "^3.1"
}
}