Skip to content
This repository has been archived by the owner on Oct 9, 2024. It is now read-only.

Latest commit

 

History

History
42 lines (25 loc) · 801 Bytes

README.md

File metadata and controls

42 lines (25 loc) · 801 Bytes

Commerce.php by Chec

PHP client library for Commerce.js by Chec

You can learn more about Commerce.js & Chec at https://commercejs.com.

Requirements

PHP 5.4 and later.

Install

You can install the bindings via Composer. Run the following command:

composer require chec/commerce:*

To use the bindings, use Composer's autoload:

require_once('vendor/autoload.php');

Getting Started

Simple usage looks like:

Commerce\Auth::setApiKey('sk_test_8146250gNZ8gddde480e07ac91c10c2651077176aed27');

$products = Commerce\Product::all();

foreach($products as $k => $product):
	echo $product['name'];
endforeach;

Documentation

Please see https://commercejs.com/docs/api