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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package shopify

Shopify API

A fluent and object-oriented approach for using the Shopify API.

Supported Objects / Endpoints:

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 the Dan\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

License

MIT.


All versions of shopify with dependencies

PHP Build Version
Package Version
Requires guzzlehttp/guzzle Version ^6.2|^7.0
nesbot/carbon Version ^1.26.3 || ^2.0
illuminate/http Version ^8.0|^9.0|^10.0
ext-json Version *
php Version >=8.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package dan/shopify contains the following files

Loading the files please wait ....