Skip to content

Commit a12b2c2

Browse files
committed
Bump version to 0.3.0
1 parent 6041d1f commit a12b2c2

6 files changed

Lines changed: 24 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ If you've found any of our packages useful, please consider [becoming a Sponsor]
3939

4040
## Why make this library?
4141

42-
The existing Walmart client libraries for PHP are either incomplete, outdated, or both. This library aims to provide a complete, up-to-date, and easy-to-use interface for all of Walmart's APIs. We built it to scratch our own itch.
42+
The existing Walmart client libraries for PHP are either incomplete, outdated, or both. This library aims to provide a complete, up-to-date, and easy-to-use interface for all of Walmart's seller- and supplier-side APIs – not just the Marketplace API (which is the only one that other packages cover). We built it to scratch our own itch.
4343

4444

4545
## Table of Contents

composer.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "highsidelabs/walmart-api",
3-
"version": "0.1.0",
3+
"version": "0.3.0",
44
"description": "A PHP client for Walmart's Marketplace, Content Provider, Drop Ship Vendor, and Warehouse Supplier APIs.",
55
"keywords": [
66
"walmart",
@@ -44,6 +44,15 @@
4444
"Composer\\Config::disableProcessTimeout",
4545
"php utils/generate-apis.php"
4646
],
47+
"refresh-schemas": [
48+
"@download-schemas",
49+
"@customize-schemas"
50+
],
51+
"make": [
52+
"@download-schemas",
53+
"@customize-schemas",
54+
"@generate"
55+
],
4756
"lint": "php vendor/bin/php-cs-fixer fix --allow-risky=yes -vvv"
4857
},
4958
"autoload": {

resources/generator-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"artifactVersion": "0.1.0",
2+
"artifactVersion": "0.3.0",
33

44
"disallowAdditionalPropertiesIfNotPresent": false,
55
"variableNamingConvention": "camelCase",

resources/templates/Configuration.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class Configuration
8989
protected string $consumerId;
9090

9191
/**
92-
* User agent of the HTTP request, set to "OpenAPI-Generator/<version>/PHP" by default
92+
* User agent of the HTTP request
9393
*
9494
* @var string
9595
*/

resources/templates/composer.hbs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,15 @@
4646
"Composer\\Config::disableProcessTimeout",
4747
"php utils/generate-apis.php"
4848
],
49+
"refresh-schemas": [
50+
"@download-schemas",
51+
"@customize-schemas"
52+
],
53+
"make": [
54+
"@download-schemas",
55+
"@customize-schemas",
56+
"@generate"
57+
],
4958
"lint": "php vendor/bin/php-cs-fixer fix --allow-risky=yes -vvv"
5059
},
5160
"autoload": {

src/Configuration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ class Configuration
9494
protected string $consumerId;
9595

9696
/**
97-
* User agent of the HTTP request, set to "OpenAPI-Generator/<version>/PHP" by default
97+
* User agent of the HTTP request
9898
*
9999
* @var string
100100
*/
101-
protected string $userAgent = 'highsidelabs/walmart-api-php/0.1.0';
101+
protected string $userAgent = 'highsidelabs/walmart-api-php/0.3.0';
102102

103103
/**
104104
* Debug switch (default set to false)

0 commit comments

Comments
 (0)