avalara/avataxclient
Composer 安装命令:
composer require avalara/avataxclient
包简介
Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API.
README 文档
README
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.
Build Status
Packagist
Travis-CI
Installing the PHP SDK
The AvaTax PHP SDK is available as a Composer package.
To use the AvaTax PHP SDK from Composer:
- Add a
composer.jsonfile to your project and link to AvaTax:
{
"require": {
"avalara/avataxclient": "*"
}
}
- Run
composer installto 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.
<?php // Include the AvaTaxClient library require __DIR__ . '/vendor/autoload.php'; use Avalara\AvaTaxClient; // Create a new client $client = new Avalara\AvaTaxClient('phpTestApp', '1.0', 'localhost', 'sandbox'); $client->withSecurity('myUsername', 'myPassword'); // If I am debugging, I can call 'Ping' to see if I am connected to the server $p = $client->ping(); echo('<h2>Ping</h2>'); echo('<pre>' . json_encode($p, JSON_PRETTY_PRINT) . '</pre>'); if ($p->authenticated == true) { echo '<p>Authenticated!</p>'; } // 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('<h2>Transaction #1</h2>'); echo('<pre>' . json_encode($t, JSON_PRETTY_PRINT) . '</pre>'); // 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('<h2>Transaction #2</h2>'); echo('<pre>' . json_encode($t, JSON_PRETTY_PRINT) . '</pre>'); ?>
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
"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:
// 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)
$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.
avalara/avataxclient 适用场景与选型建议
avalara/avataxclient 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 8.59M 次下载、GitHub Stars 达 52, 最近一次更新时间为 2017 年 02 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「ecommerce」 「tax」 「taxes」 「tax calculation」 「avalara」 「AvaTax」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 avalara/avataxclient 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 avalara/avataxclient 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 avalara/avataxclient 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Nevogate Payment Gateway SDK
API client for validating Tax Identification Number.
Validate the format of EU vat numbers.
Module allowing creation of tax rates and categories in the CMS via SiteConfig
Client library for Avalara's AvaTax suite of business tax calculation and processing services. Uses the REST v2 API. Updated to use Guzzle 7 for Laravel compatibility.
Dealing with payments through the Egyptian payment gateway PayMob
统计信息
- 总下载量: 8.59M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 52
- 点击次数: 35
- 依赖项目数: 7
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2017-02-03