secucard/secucard-connect

secucard connect PHP client SDK


README

If you start with a new project please use this SDK: https://github.com/secuconnect/secuconnect-php-sdk

Requirements

Composer

You can install the bindings via Composer. Add this to your composer.json:

{
  "require": {
    "secucard/secucard-connect":"^1.26.0"
  }
}

Then install via:

composer install

To use the bindings, use Composer's autoload:

require_once('vendor/autoload.php');

Getting Started

Simple usage with client credentials looks like:

include "vendor/autoload.php";

$config = array();

$credentials = new ClientCredentials('your-id','your-secret')

$fp = fopen("/tmp/secucard_php_test.log", "a");
$logger = new secucard\client\log\Logger($fp, true);

// general storage, here used shared for tokens and internal caching, but recommendation is to split up in two 
 $store = new FileStorage('your-storage-file-path');
 
// create Secucard client
$secucard = new SecucardConnect($config, $logger, $store, $store, $credentials);

// use secucard client to get available loyalty/cards list
$list = $secucard->Loyalty->Cards->getList();

Documentation

Please see http://developer.secuconnect.com/doc/guide for up-to-date documentation.

Tests

In order to run tests first install PHPUnit via Composer:

composer update --dev

To run the test suite:

./vendor/bin/phpunit