-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (39 loc) · 1.03 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/ecwid-client",
"description": "Ecwid PHP Client",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/dSpaceLabs/Ecwid",
"authors": [
{
"name": "Joshua Estes",
"homepage": "http://joshuaestes.me"
}
],
"support": {
"issues": "https://github.com/dSpaceLabs/Ecwid/issues",
"source": "https://github.com/dSpaceLabs/Ecwid",
"docs": "https://github.com/dSpaceLabs/Ecwid"
},
"require": {
"dspacelabs/http-client": "dev-master",
"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\\Ecwid\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Dspacelabs\\Component\\Ecwid\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
}
}