2017 © Pedro Peláez
 

library avataxclient

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

image

avalara/avataxclient

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  • Wednesday, June 6, 2018
  • by Avalara
  • Repository
  • 12 Watchers
  • 6 Stars
  • 27,043 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 31 Forks
  • 7 Open issues
  • 25 Versions
  • 153 % Grown

The README.md

AvaTax-REST-V2-PHP-SDK

This GitHub repository is the PHP SDK for Avalara's world-class tax service, AvaTax. It uses the AvaTax REST v2 API, which is a fully REST implementation and provides a single client for all AvaTax functionality. For more information about AvaTax REST v2, please visit Avalara's Developer Network or view the online Swagger documentation., (*1)

Build Status

Packagist, (*2)

Packagist, (*3)

Travis-CI, (*4)

Travis, (*5)

Installing the PHP SDK

The AvaTax PHP SDK is available as a Composer package., (*6)

To use the AvaTax PHP SDK from Composer: * Add a composer.json file to your project and link to AvaTax:, (*7)

{
    "require": {
        "avalara/avataxclient": "*"
    }
}
  • Run composer install to download the latest version.

Using the PHP SDK

The PHP SDK uses a fluent interface to define a connection to AvaTax and to make API calls to calculate tax on transactions. Here's an example of connecting to the API., (*8)

withSecurity('myUsername', 'myPassword');

// If I am debugging, I can call 'Ping' to see if I am connected to the server
$p = $client->ping();
echo('

Ping

'); echo('
' . json_encode($p, JSON_PRETTY_PRINT) . '
'); if ($p->authenticated == true) { echo '

Authenticated!, (*9)

'; } // Create a simple transaction for $100 using the fluent transaction builder $tb = new Avalara\TransactionBuilder($client, "DEFAULT", Avalara\DocumentType::C_SALESINVOICE, 'ABC'); $t = $tb->withAddress('SingleLocation', '123 Main Street', null, null, 'Irvine', 'CA', '92615', 'US') ->withLine(100.0, 1, null, "P0000000") ->create(); echo('

Transaction #1

'); echo('
' . json_encode($t, JSON_PRETTY_PRINT) . '
'); // Now, let's create a more complex transaction! $tb = new Avalara\TransactionBuilder($client, "DEFAULT", Avalara\DocumentType::C_SALESINVOICE, 'ABC'); $t = $tb->withAddress('ShipFrom', '123 Main Street', null, null, 'Irvine', 'CA', '92615', 'US') ->withAddress('ShipTo', '100 Ravine Lane', null, null, 'Bainbridge Island', 'WA', '98110', 'US') ->withLine(100.0, 1, null, "P0000000") ->withLine(1234.56, 1, null, "P0000000") ->withExemptLine(50.0, null, "NT") ->withLine(2000.0, 1, null, "P0000000") ->withLineAddress(Avalara\TransactionAddressType::C_SHIPFROM, "123 Main Street", null, null, "Irvine", "CA", "92615", "US") ->withLineAddress(Avalara\TransactionAddressType::C_SHIPTO, "1500 Broadway", null, null, "New York", "NY", "10019", "US") ->withLine(50.0, 1, null, "FR010000") ->create(); echo('

Transaction #2

'); echo('
' . json_encode($t, JSON_PRETTY_PRINT) . '
'); ?>

How to enable logging in the PHP SDK

  • SDK uses PSR-3, a common interface used for logging capabilities in PHP.
  • Client would implement the binding on their end like Monolog, Analog etc to enable logging.
  • By default there is no logging enabled.
  • All the attributes which are part of log message are in LogObject.php
  • To enable or disable logging of request and response object, there is a boolean variable logRequestAndResponseBody passed as constructor argument. Default is set to FALSE
  • Output of logging is in JSON format.

Logging could be enabled on client side by adding logging library like Monolog. This could be done by adding dependency and version in composer.json, (*10)

"require": {
        ....
        ....
        "monolog/monolog": "^3.2"
    },

By just adding the above configuration, the logging framework will recognise the binding. Now, we will have to provide logging object as contructor parameter to AvaTaxClient. This could be done as below:, (*11)

// Include the packages/classes we would need to create the logger object

use Monolog\Logger;
use Monolog\Handler\StreamHandler;
use Monolog\Formatter\JsonFormatter;
use Monolog\Processor\PsrLogMessageProcessor;

The following example shows how we can add configuration to display logs at console (stdout), (*12)

$stream_handler = new StreamHandler("php://stdout");

$stream_handler->setFormatter(new JsonFormatter());

// Follow PSR-3 specificaiton.
$psrProcessor = new PsrLogMessageProcessor();

$logger = new Logger('appLogger', [$stream_handler], [
    $psrProcessor,
  ]);

// Create a new client
$client = new Avalara\AvaTaxClient('phpTestApp', '1.0', 'localhost', 'sandbox',[], $logger, true);

This should add logging to SDK and the logs would be displayed on console. If we want to use other configurations where we want logs to be stored in files etc then the handler(StreamHandler in above case) would require changes accordingly., (*13)

The Versions

06/06 2018

dev-master

9999999-dev https://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

06/06 2018

18.5.1.208

18.5.1.208 https://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

01/05 2018

18.4.4.191

18.4.4.191 https://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

30/04 2018

18.4.3.191

18.4.3.191 https://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

31/03 2018

18.3.1.176

18.3.1.176 https://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

27/02 2018

18.2.0.167

18.2.0.167 https://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

27/02 2018

18.2.x-dev

18.2.9999999.9999999-dev https://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

01/02 2018

18.1.2.161

18.1.2.161 https://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

26/01 2018

18.1.2.x-dev

18.1.2.9999999-dev https://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

23/01 2018

18.1.x-dev

18.1.9999999.9999999-dev https://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

08/01 2018

17.12.0.147

17.12.0.147 https://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

08/01 2018

17.12.0.149

17.12.0.149 https://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

16/12 2017

17.12.x-dev

17.12.9999999.9999999-dev http://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

29/09 2017

17.9.0.x-dev

17.9.0.9999999-dev http://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

15/09 2017

17.8.1.120

17.8.1.120 http://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

13/09 2017

17.8.1.x-dev

17.8.1.9999999-dev http://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

04/08 2017

17.7.0.96

17.7.0.96 http://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

22/06 2017

17.6.x-dev

17.6.9999999.9999999-dev http://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

12/05 2017

17.5.0.67

17.5.0.67 http://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

06/04 2017

2.17.4.58

2.17.4.58 http://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

27/03 2017

dev-MarchHotfix

dev-MarchHotfix http://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

14/03 2017

2.17.3.48

2.17.3.48 http://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

03/03 2017

2.17.2.43

2.17.2.43 http://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

13/02 2017

2.17.1.3

2.17.1.3 http://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance

04/02 2017

2.17.1

2.17.1.0 http://developer.avalara.com/

Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.

  Sources   Download

Apache-2.0

The Requires

 

by Ted Spence
by Bob Maidens

ecommerce tax taxes tax calculation avalara avatax sales compliance