-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.04 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
{
"name": "dspacelabs/shopify-client",
"description": "Shopify Client",
"keywords": ["shopify"],
"license": "MIT",
"homepage": "https://github.com/dSpaceLabs/Shopify",
"authors": [
{
"name": "Joshua Estes",
"homepage": "http://joshuaestes.me"
}
],
"support": {
"issues": "https://github.com/dSpaceLabs/Shopify/issues",
"source": "https://github.com/dSpaceLabs/Shopify",
"docs": "https://github.com/dSpaceLabs/Shopify"
},
"require": {
"dspacelabs/http-client": "^0.1",
"guzzlehttp/guzzle": "^6.0",
"psr/log": "^1.0"
},
"require-dev": {
"mockery/mockery": "^0.9.9",
"phpunit/phpunit": "^6.2",
"phing/phing": "^2.16"
},
"autoload": {
"psr-4": { "Dspacelabs\\Component\\Shopify\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Dspacelabs\\Component\\Shopify\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}