Php Shopify Versions Save

PHP SDK for Shopify API

v1.1.15

3 years ago
  • Add Shopify API header X-Shopify-Api-Features as a config to the SDK #165
  • Added resources and child resources of Balance, Balance->Transaction, and Payouts to ShopifyPayment. #171
  • Update Customer.php with query string parameter #176
  • Created function to generate account_activation_link #178
  • Fix bug introduced by #143 by lowercasing key in getHeader #183
  • Use Retry-After header as value to sleep for before retrying request #184
  • Support DiscountCode batch Action #188
  • calculate() takes an optional array as a parameter. #191 #190

v1.1.14

4 years ago

Added ShopifyPayment Dispute resource #162

v1.1.13

4 years ago

Fixes

  • Update ShopifySDK.php (Add missing @property-read and @method php doc.) #159

v1.1.12

4 years ago

Fixes:

  • price rule endpoint supports count #158

v1.1.11

4 years ago

Fix(es):

  • Added delete status of 204 #153

v1.1.10

4 years ago

Fixes:

  • Added the Collection resource #145
  • Shopify Collection #144
  • one extra line in code #149

v1.1.9

4 years ago

Fixes:

  • Make sure header keys are always lowercase #143

v1.1.8

4 years ago

Fixes:

  • Update default Shopify API version to '2020-01'

v1.1.7

4 years ago

Important Bug Fix:

  • Bug solved for previous link in ShopifyResounce #140

v1.1.6

4 years ago

Cursor Based Pagination

  • Fixed issues to load next page Example code:
$productResource =  $shopify->getApi()->Product();
$products = $productResource->get(['limit'=>50]);
$nextPageProducts = $productResource->get($productResource->getNextPageParams());
/* in short: you need to reuse the resource to get the params before making another resource */**