Download the PHP package zohaib-vaival/php-cartzy without Composer

On this page you can find all versions of the php package zohaib-vaival/php-cartzy. 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 php-cartzy

PHP Cartzy SDK

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

Installation

Install with Composer

Requirements

PHPCartzy 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 PHPCartzy\HttpRequestJson class.

Usage

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

Configure CartzySDK

If you are using your own private API, provide the ApiKey and Password.

For Third party apps, use the permanent access token.

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 CartzySDK Object

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

Discount Code

You can get list of discount codes created in store admin.

Reference


All versions of php-cartzy with dependencies

PHP Build Version
Package Version
Requires php Version >=7.1
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 zohaib-vaival/php-cartzy contains the following files

Loading the files please wait ....