ezlocate/ezlocate-php-sdk

PHP SDK for EZ Locate API v1

0.2.7 2022-01-17 16:33 UTC

This package is auto-updated.

Last update: 2024-04-17 21:05:18 UTC


README

PHP SDK for EZ Locate API.

Installation

$ composer require ezlocate/ezlocate-php-sdk

Usage

use \EZLocate\EZLocate;
use \EZLocate\Order;

const EZL_USERNAME = 'YOUR_EZL_USERNAME';
const EZL_ACCESS_TOKEN = 'YOUR_EZL_ACCESS_TOKEN';

$ezl = new EZLocate(EZL_USERNAME, EZL_ACCESS_TOKEN);

$data = [
    'notes' => 'My order notes',
    'ref' => 'XXXX',
    'ref_2' => 'YYYY',
    'person' => [
        'firstname' => 'John',
        'lastname' => 'Doe',
        'ssn' => 'XXXX'
    ]
];

$order = $ezl->createOrder($data);
print_r($order);

License

Released under the MIT License. See LICENSE file.