Download the PHP package dan/shopify without Composer
On this page you can find all versions of the php package dan/shopify. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package shopify
Shopify API
A fluent and object-oriented approach for using the Shopify API.
Supported Objects / Endpoints:
- Asset
- Customer
- Dispute
- Fulfillment
- FulfillmentService
- Image
- Metafield
- Order
- Product
- Risk
- Shop
- Theme
- Variant
- Webhook
Versions
PHP | Package |
---|---|
8 | 5.0.* |
7 | 4.0.* |
YOLO | dev-master |
Composer
Basic Usage
The APIs all function alike, here is an example of usage of the products API.
Basic (very basic) GraphQL
The collection and model utilities that are available ->find(...)
and ->findMany(...)
for RESTful endpoints are NOT available for GraphQL.
Some endpoints are only available through Shopify's GraphQL library. This makes me sad because GraphQL is not as readable or intuitive as RESTful APIs, less people understand it, and it's harder to train people on. That said, if you want to jam out with your graphql, there is a client method to assist you.
For example, fetch delivery profiles (only available in GraphQL).
Note: You can safely use the
graphql(...)
helper method without any concern of changing the state on theDan\Shopify\Shopify::class
.
Using cursors
Shopify doesn't jam with regular old pagination, sigh ...
As of the 2019-10
API version, Shopify has removed per page pagination on their busiest endpoints.
With the deprecation of the per page pagination comes a new cursor based pagination.
You can use the next
method to get paged responses.
Example usage:
Metafields!
There are multiple endpoints in the Shopify API that have support for metafields.
In effort to support them all, this API has been updated to allow chaining ->metafields
from any endpoint.
This won't always work as not every endpoint supports metafields, and any endpoint that doesn't support metafields will result in a 404
.
Below are examples of all the endpoints that support metafields.
Usage with Laravel
Single Store App
In your config/app.php
Add the following to your providers
array:
Requires for private app (env token) for single store usage of oauth (multiple stores)
Add the following to your aliases
array:
If your app only interacts with a single store, there is a Facade that may come in handy.
For facade usage, replace the following variables in your .env
Optionally replace following variables in your .env
Empty or admin
defaults to oldest supported API, learn more
Using the Facade gives you Dan\Shopify\Shopify
It will be instantiated with your shop and token you set up in
config/shopify.php
Review the Basic Usage
above, using the Facade is more or less the same, except you're only interacting with the one store in your config.
Oauth Apps
Making a public app using oauth, follow the Shopify docs to make your auth url, and use the following helper to retrieve your access token using the code from your callback.
Get a token for a redirect response.
Verify App Hmac (works for callback or redirect)
Verify App Webhook Hmac
Contributors
Todo
- Artisan Command to create token
License
MIT.
All versions of shopify with dependencies
nesbot/carbon Version ^1.26.3 || ^2.0
illuminate/http Version ^8.0|^9.0|^10.0
ext-json Version *
php Version >=8.0