phpclassic/php-shopify
Lightweight PHP SDK for the Shopify API. Configure with shop URL and API key/password or an app access token, then access resources in an object-oriented style. Uses cURL by default and lets you pass extra cURL options for requests.
Full Changelog: https://github.com/phpclassic/php-shopify/compare/v1.2.15...v1.2.16
Full Changelog: https://github.com/phpclassic/php-shopify/compare/v1.2.14...v1.2.15
Full Changelog: https://github.com/phpclassic/php-shopify/compare/v1.2.13...v1.2.14
Full Changelog: https://github.com/phpclassic/php-shopify/compare/v1.2.12...v1.2.13
Full Changelog: https://github.com/phpclassic/php-shopify/compare/v1.2.11...v1.2.12
Full Changelog: https://github.com/phpclassic/php-shopify/compare/v1.2.10...v1.2.11
Full Changelog: https://github.com/phpclassic/php-shopify/compare/v1.2.9...v1.2.10
AssignedFulfillmentOrder Resource
Example:
// Requesting all assigned fulfillment orders
$shopify->AssignedFulfillmentOrder()->get();
// Requesting assigned fulfillment orders (by status)
$shopify->AssignedFulfillmentOrder()->get(["assignment_status" => "fulfillment_requested"]);
// Requesting assigned fulfillment orders (by locations)
$shopify->AssignedFulfillmentOrder()->get(["location_ids" => ["123456789"]]);
Support the behavior required by: https://shopify.dev/apps/fulfillment/order-management-apps/manage-fulfillments#request-a-fulfillment https://shopify.dev/api/admin-rest/2022-10/resources/assignedfulfillmentorder
FulfillmentRequest Resource - including actions Mapped FulfillmentOrder->FulfillmentRequest Mapped Order(id)->FulfillmentOrder Example:
// Requesting the FulfilmentOrder for a given order
$fo = $client->Order("1234567890")->FulfillmentOrder()->get();
// Creating a FulfilmentRequest
// Follow instructions to get partial fulfilments
$fr = $client->FulfillmentOrder('0987654321')->FulfillmentRequest->post([]);
// Accepting \ Rejecting a FulfilmentRequest
$fr = $client->FulfillmentOrder('0987654321')->FulfillmentRequest->accept();
$fr = $client->FulfillmentOrder('0987654321')->FulfillmentRequest->reject();
// Communicating fulfillment
$client->Fulfillment->post($body)
X-Shopify-Api-Features as a config to the SDK #165Added ShopifyPayment Dispute resource #162
Fixes
How can I help you explore Laravel packages today?