This repository contains the open source PHP SDK that allows you to access DutyCalculator from your PHP app. The SDK requires a DutyCalculator API account (go to http://www.dutycalculator.com/compare-plans/). Full documentation about DutyCalculator API you can find here.
The examples are a good place to start. The minimal you'll need to have is:
require 'dutycalculator-php-sdk/src/dutycalculator.php';
$client = new DutyCalculator_Client('YOUR_API_KEY');
/*
* Example of getting available import to countries
*/
$countriesTo = $client->getImportToCountries();
print_r($countriesTo->getAsArray());
All API calls have function representation in the client class. But you can make an API call using next code:
try
{
$countriesFrom = $client->sendRequest('supported-countries/from', array('display_alpha2_code' => true));
}
catch (DutyCalculator_Exception $e)
{
error_log($e);
$countriesFrom = null;
}
With Composer:
- Add the
"dutycalculator/dutycalculator-php-sdk": "@stable"
into therequire
section of yourcomposer.json
. - Run
composer install
. - The example will look like
$client = new DutyCalculator_Client('YOUR_API_KEY');
/*
* Example of getting available import to countries
*/
$countriesTo = $client->getImportToCountries();