-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
65 lines (65 loc) · 1.86 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
65
{
"name": "highsidelabs/walmart-api",
"version": "0.7.0",
"description": "A PHP client for Walmart's Marketplace, 1P Supplier, and Content Provider APIs.",
"keywords": [
"walmart",
"walmart-api",
"walmart-marketplace-api",
"walmart-content-providers-api",
"walmart-1p-suppliers-api",
"ecommerce",
"sdk",
"rest",
"api"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Highside Labs",
"homepage": "https://highsidelabs.co",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0 || ^8.1 || ^8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^7.4",
"guzzlehttp/psr7": "^1.7 || ^2.0",
"ramsey/uuid": "^4.7",
"symfony/uid": "^6.1",
"phpseclib/phpseclib": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.9",
"phpunit/phpunit": "^9.6"
},
"scripts": {
"download-schemas": "php utils/download-schemas.php",
"customize-schemas": "php utils/customize-schemas.php",
"generate": [
"Composer\\Config::disableProcessTimeout",
"php utils/generate-apis.php"
],
"refresh-schemas": [
"@download-schemas",
"@customize-schemas"
],
"make": [
"@download-schemas",
"@customize-schemas",
"@generate"
],
"version-update": "@generate --supporting-files-only",
"clean": "rm -rf docs src/Models/*/* src/Apis/*/*/*",
"lint": "php vendor/bin/php-cs-fixer fix --allow-risky=yes -vvv"
},
"autoload": {
"psr-4": { "Walmart\\" : "src/" }
},
"autoload-dev": {
"psr-4": { "Walmart\\Test\\" : "test/" }
}
}