alldigitalrewards/rewardstack

5.0.1 2023-12-01 19:59 UTC

This package is auto-updated.

Last update: 2024-04-16 22:47:11 UTC


README

This is an ADR RewardStack SDK

Install

Via Composer

$ composer require alldigitalrewards/rewardstack

Usage

Bootstrap

<?php
require __DIR__ . '/vendor/autoload.php';

$credentials = new \AllDigitalRewards\RewardStack\Auth\Credentials(
    'username',
    'password'
);

$uri = new \GuzzleHttp\Psr7\Uri('https://admin.qa.alldigitalrewards.com');

$httpClient = new \GuzzleHttp\Client();

$authProxy = new \AllDigitalRewards\RewardStack\Auth\AuthProxy($credentials, $uri, $httpClient);

$client = new \AllDigitalRewards\RewardStack\Client($authProxy);

Get a Participant

<?php
$participantRequest = new \AllDigitalRewards\RewardStack\Request\ParticipantRequest('TESTPARTICIPANT1');

$participant = $client->request($participantRequest);

Testing

$ composer test