PHPackages                             jwohlfert23/laravel-avalara - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. jwohlfert23/laravel-avalara

ActiveLibrary[API Development](/categories/api)

jwohlfert23/laravel-avalara
===========================

This is my package laravel-avalara

0.3.5(2mo ago)014.3k↓46.4%1[2 PRs](https://github.com/jwohlfert23/laravel-avalara/pulls)MITPHPPHP ^8.3CI passing

Since May 6Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/jwohlfert23/laravel-avalara)[ Packagist](https://packagist.org/packages/jwohlfert23/laravel-avalara)[ Docs](https://github.com/jwohlfert23/laravel-avalara)[ RSS](/packages/jwohlfert23-laravel-avalara/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (18)Versions (30)Used By (0)

Simple Avalara Client for Laravel
=================================

[](#simple-avalara-client-for-laravel)

[![Latest Version on Packagist](https://camo.githubusercontent.com/aa273f2af3c2503a09a041a78edd27b98eeed7481cf6e5a80b48affa3d9075a0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6a776f686c6665727432332f6c61726176656c2d6176616c6172612e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jwohlfert23/laravel-avalara)[![GitHub Tests Action Status](https://camo.githubusercontent.com/49f6922caaef2c1d064c727e1bfc4832c4fd0565d66ed62037b8f4d2b35c476a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6a776f686c6665727432332f6c61726176656c2d6176616c6172612f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/jwohlfert23/laravel-avalara/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/6a49d35759ded1daddf5388c7699410032f099aab35c5cf8ae2ae6ac4d1e3673/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6a776f686c6665727432332f6c61726176656c2d6176616c6172612f436865636b253230262532306669782532307374796c696e673f6c6162656c3d636f64652532307374796c65)](https://github.com/jwohlfert23/laravel-avalara/actions?query=workflow%3A%22Check+%26+fix+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/de5ccd2af66bad4d68a1148e64c198c6242ac98d6d2be5d8ee1a40511437fd53/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6a776f686c6665727432332f6c61726176656c2d6176616c6172612e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/jwohlfert23/laravel-avalara)

We built this client because of problems with the existing SDK provided by Avalara:

1. Lack of support for PHP8.
2. No transformation of responses to PHP models/objects.
3. Avalara only has a 99.5% SLA, and we thought built-in retries for certain endpoints would be helpful.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require jwohlfert23/laravel-avalara
```

You should publish the config file:

```
php artisan vendor:publish --tag="avalara-config"
```

Usage
-----

[](#usage)

```
$transaction = new CreateTransaction();

$transaction->date = now();
$transaction->type = AvalaraDocType::SALES_ORDER;
$transaction->customerCode = 'jack@gmail.com';

$transaction->addresses['ShipFrom'] = new \App\Services\Avalara\Models\AddressModel();
$transaction->addresses['ShipTo'] = new \App\Services\Avalara\Models\AddressModel();

$transaction->lines[] = new CreateLineItem(
    number: 0,
    amount: 50.00,
    quantity: 2,
    taxCode: 'P0000000'
);

return AvalaraClient::createTransaction($transaction);
// or
return $transaction->create();
```

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

51

—

FairBetter than 96% of packages

Maintenance88

Actively maintained with recent releases

Popularity26

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 62.8% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~54 days

Total

27

Last Release

60d ago

PHP version history (2 changes)0.0.1PHP ^8.1

0.3.0PHP ^8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/a3b9575f490d700ca84c6ffafdde7528e958b1fd37cb9900ec92128351452571?d=identicon)[jwohlfert23](/maintainers/jwohlfert23)

---

Top Contributors

[![jwohlfert23](https://avatars.githubusercontent.com/u/2797531?v=4)](https://github.com/jwohlfert23 "jwohlfert23 (27 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (8 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (8 commits)")

---

Tags

laraveljwohlfert23laravel-avalara

###  Code Quality

TestsPest

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/jwohlfert23-laravel-avalara/health.svg)

```
[![Health](https://phpackages.com/badges/jwohlfert23-laravel-avalara/health.svg)](https://phpackages.com/packages/jwohlfert23-laravel-avalara)
```

###  Alternatives

[simplestats-io/laravel-client

Client for SimpleStats!

4515.5k](/packages/simplestats-io-laravel-client)[scalar/laravel

Render your OpenAPI-based API reference

6183.9k2](/packages/scalar-laravel)[njoguamos/laravel-plausible

A laravel package for interacting with plausible analytics api.

208.8k](/packages/njoguamos-laravel-plausible)[ryangjchandler/bearer

Minimalistic token-based authentication for Laravel API endpoints.

8129.8k](/packages/ryangjchandler-bearer)[codebar-ag/laravel-docuware

DocuWare integration with Laravel

1221.1k](/packages/codebar-ag-laravel-docuware)[combindma/laravel-facebook-pixel

Meta pixel integration for Laravel

4956.9k](/packages/combindma-laravel-facebook-pixel)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
