forked from ValeriiTsarov/walmart-api-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 912 Bytes
/
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
{
"name": "zacherystuart/walmart-api-php-client",
"type": "library",
"license": "MIT",
"description": "Walmart Open API PHP client",
"keywords": ["walmart", "API", "client"],
"authors": [
{
"name": "Piotr Gadzinski",
"email": "[email protected]",
"homepage": "https://github.com/Gadoma"
},
{
"name": "Zachery Stuart",
"email": "[email protected]"
}
],
"require": {
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "^5.2",
"mockery/mockery": "^0.9.4",
"satooshi/php-coveralls": "^1.0"
},
"autoload": {
"psr-4": {
"WalmartApiClient\\": ["src/WalmartApiClient"]
}
},
"autoload-dev": {
"psr-4": {
"WalmartApiClient\\": ["tests/WalmartApiClient"]
}
}
}