Download the PHP package phpclassic/php-shopify without Composer

On this page you can find all versions of the php package phpclassic/php-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?
phpclassic/php-shopify
Rate from 1 - 5
Rated 1.00 based on 1 reviews

Informations about the package php-shopify

PHP Shopify SDK

Build Status Monthly Downloads Total Downloads Latest Stable Version Latest Unstable Version License Hire

PHPShopify is a simple SDK implementation of Shopify API. It helps accessing the API in an object oriented way.

Installation

Install with Composer

Requirements

PHPShopify uses curl extension for handling http calls. So you need to have the curl extension installed and enabled with PHP.

However if you prefer to use any other available package library for handling HTTP calls, you can easily do so by modifying 1 line in each of the get(), post(), put(), delete() methods in PHPShopify\HttpRequestJson class.

You can pass additional curl configuration to ShopifySDK

Usage

You can use PHPShopify in a pretty simple object oriented way.

Configure ShopifySDK

If you are using your own private API (except GraphQL), provide the ApiKey and Password.

For Third party apps, use the permanent access token.

For GraphQL, AccessToken is required. If you are using private API for GraphQL, use your password as AccessToken here.

You can use specific Shopify API Version by adding in the config array

How to get the permanent access token for a shop?

There is a AuthHelper class to help you getting the permanent access token from the shop using oAuth.

1) First, you need to configure the SDK with additional parameter SharedSecret

2) Create the authentication request

The redirect url must be white listed from your app admin as one of Application Redirect URLs.

If you want the function to return the authentication url instead of auto-redirecting, you can set the argument $return (5th argument) to true.

3) Get the access token when redirected back to the $redirectUrl after app authorization.

You can use the same page for creating the request and getting the access token (redirect url). In that case just skip the 2nd parameter $redirectUrl while calling createAuthRequest() method. The AuthHelper class will do the rest for you.

Get the ShopifySDK Object

You can provide the configuration as a parameter while instantiating the object (if you didn't configure already by calling config() method)

Now you can do get(), post(), put(), delete() calling the resources in the object oriented way. All resources are named as same as it is named in shopify API reference. (See the resource map below.)

All the requests returns an array (which can be a single resource array or an array of multiple resources) if succeeded. When no result is expected (for example a DELETE request), an empty array will be returned.

You can also filter the results by using the url parameters (as specified by Shopify API Reference for each specific resource).

Note that you don't need to wrap the data array with the resource key (order in this case), which is the expected syntax from Shopify API. This is automatically handled by this SDK.

The child resources can be used in a nested way.

You must provide the ID of the parent resource when trying to get any child resource

GraphQL v1.1

The GraphQL Admin API is a GraphQL-based alternative to the REST-based Admin API, and makes the functionality of the Shopify admin available at a single GraphQL endpoint. The full set of supported types can be found in the GraphQL Admin API reference. You can simply call the GraphQL resource and make a post request with a GraphQL string:

The GraphQL Admin API requires an access token for making authenticated requests. You can obtain an access token either by creating a private app and using that app's API password, or by following the OAuth authorization process. See GraphQL Authentication Guide

Variables

If you want to use GraphQL variables, you need to put the variables in an array and give it as the 4th argument of the post() method. The 2nd and 3rd arguments don't have any use in GraphQL, but are there to keep similarity with other requests, you can just keep those as null. Here is an example:

GraphQL Builder

This SDK only accepts a GraphQL string as input. You can build your GraphQL from Shopify GraphQL Builder

Resource Mapping

Some resources are available directly, some resources are only available through parent resources and a few resources can be accessed both ways. It is recommended that you see the details in the related Shopify API Reference page about each resource. Each resource name here is linked to related Shopify API Reference page.

Use the resources only by listed resource map. Trying to get a resource directly which is only available through parent resource may end up with errors.

Custom Actions

There are several action methods which can be called without calling the get(), post(), put(), delete() methods directly, but eventually results in a custom call to one of those methods.

Custom Actions List

The custom methods are specific to some resources which may not be available for other resources. It is recommended that you see the details in the related Shopify API Reference page about each action. We will just list the available actions here with some brief info. each action name is linked to an example in Shopify API Reference which has more details information.

FulfillmentRequest Resource - including actions

Shopify API features headers

To send X-Shopify-Api-Features headers while using the SDK, you can use the following:

Reference

Paid Support

You can hire the author of this SDK for setting up your project with PHPShopify SDK.

Hire at Upwork

Backers

Support us with a monthly donation and help us continue our activities. [Become a backer]

Sponsors

Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]


All versions of php-shopify with dependencies

PHP Build Version
Package Version
Requires php Version >=5.6
ext-curl Version *
ext-json Version *
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 phpclassic/php-shopify contains the following files

Loading the files please wait ....