craymend/serve-first-php-sdk

A PHP wrapper for the Serve First payments API

1.0.1 2023-10-23 17:52 UTC

This package is auto-updated.

Last update: 2024-09-23 19:55:16 UTC


README

This package is a PHP wrapper for the Serve First API.

Requirements

This project works with PHP 7.2+.

Installation

Install with composer:

composer require craymend/serve-first-php-sdk

Examples

Create an instance of Request. Be sure to set sandbox mode when testing.

<?php

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

use Craymend\ServeFirst\Request;

$apiVersion = 'v2';

$mode = Request::MODE_SANDBOX;
// $mode = Request::MODE_PRODUCTION;

$sourceKey = 'your-key';
$sourcePin = 'your-pin';

$request = new Request($sourceKey, $sourcePin);

// the mode controls the baseUrl
echo 'baseUrl: ' . $request->getBaseUrl() . '<br>';
echo 'Switch to sandbox mode<br>';
$request->setMode($mode); // Change to sandbox mode
echo 'baseUrl: ' . $request->getBaseUrl() . '<br>';

You can now use the Serve First API. For example, retrieve product categories:

<?php

echo "Test getting data:<br><br>";

$uri = '/products/categories';

$data = [];

$result = $request->get($uri, $data);

if (!$result->getStatus()) {
    echo 'error:<br><br>';

	$errors = $result->getErrors();
    echo json_encode($errors);
}else{
    echo 'Success! data:<br><br>';
    $data = $result->getData();
    echo 'data: ' . json_encode($data) . '<br>';
}

License

MIT