-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
executable file
·60 lines (59 loc) · 1.59 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
{
"name": "shipperhq/module-common",
"description": "ShipperHQ Common",
"type": "magento2-module",
"version": "20.10.0",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"authors": [
{
"name": "ShipperHQ",
"email": "sales@shipperhq.com",
"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.4",
"shipperhq/library-shipper": "^20.12"
},
"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",
"symfony/dependency-injection": ">3.4.26",
"fooman/magento2-phpunit-bridge": "^0.9.0"
},
"autoload": {
"files": [
"src/registration.php"
],
"psr-4": {
"ShipperHQ\\Common\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ShipperHQ\\Common\\Test\\": "tests/unit/"
}
}
}