PHPackages                             timothydc/exact-online-laravel-client - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. timothydc/exact-online-laravel-client

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

timothydc/exact-online-laravel-client
=====================================

EOL connector wrapper for the Laravel framework

v3.0.0(5mo ago)181PHPPHP ^7.4|^8.0

Since Jun 4Pushed 5mo ago1 watchersCompare

[ Source](https://github.com/timothydc/exact-online-laravel-client)[ Packagist](https://packagist.org/packages/timothydc/exact-online-laravel-client)[ RSS](/packages/timothydc-exact-online-laravel-client/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (3)Versions (15)Used By (0)

Exact Online Base Client for Laravel
====================================

[](#exact-online-base-client-for-laravel)

This package includes routes for Exact authentication and allows for multithread safe access token refreshes.

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

[](#installation)

Add these lines to your `composer.json`.

```
"repositories": [
    {
        "type" : "composer",
        "url" : "https://packages.timothydc.app"
    }
]

```

Install the package via composer

```
composer require timothydc/exact-online-laravel-client

```

Add the private repository to the repositories section of your composer.json file:

Configuration
-------------

[](#configuration)

You can publish all resources, or you may choose to publish them separately:

```
php artisan vendor:publish --tag="exact-online-client"

php artisan vendor:publish --tag="exact-online-client:config"
php artisan vendor:publish --tag="exact-online-client:migrations"

```

Run your migrations to create the `oauth_tokens` table.

```
php artisan migrate

```

You can configure your connection variables in your `.env` file or in the published `config/exact-online.php` file.

Authentication
--------------

[](#authentication)

Initiate the authentication. Make sure you configured `/exact-online/oauth/complete` as your "redirect URL" in the Exact app center.

```
https://foo.bar/exact-online/oauth/start

```

Check if the API connection was successful

```
https://foo.bar/exact-online/oauth/test

```

Disconnect the EOL connection

```
https://foo.bar/exact-online/oauth/disconnect

```

Then you can use the Picqer library to CRUD Exact Online records.

```
use Picqer\Financials\Exact\Item;
use TimothyDC\ExactOnline\BaseClient\ExactOnlineClient;

$exactOnlineClient = resolve(ExactOnlineClient::class);

// create a new product in EOL
$item = new Item($exactOnlineClient->getConnection());
$item->Code = 'foo-bar';
$item->CostPriceStandard = 1.23;
$item->Description = 'lorem ipsum';
$item->IsSalesItem = true;
$item->SalesVatCode = 'VH';
$item->save();

```

###  Health Score

43

—

FairBetter than 91% of packages

Maintenance73

Regular maintenance activity

Popularity13

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 83.3% 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 ~150 days

Recently: every ~286 days

Total

12

Last Release

150d ago

Major Versions

v1.2.0 → v2.0.02024-06-02

v2.1.0 → v3.0.02025-12-14

PHP version history (2 changes)v1.0.0PHP ^7.4|^8.0

v1.1.0PHP ^7.4|^8.0|^8.1

### Community

Maintainers

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

---

Top Contributors

[![timothydc](https://avatars.githubusercontent.com/u/13786303?v=4)](https://github.com/timothydc "timothydc (5 commits)")[![Tymorad](https://avatars.githubusercontent.com/u/83396345?v=4)](https://github.com/Tymorad "Tymorad (1 commits)")

### Embed Badge

![Health badge](/badges/timothydc-exact-online-laravel-client/health.svg)

```
[![Health](https://phpackages.com/badges/timothydc-exact-online-laravel-client/health.svg)](https://phpackages.com/packages/timothydc-exact-online-laravel-client)
```

###  Alternatives

[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M687](/packages/barryvdh-laravel-ide-helper)[orchestra/canvas

Code Generators for Laravel Applications and Packages

21017.2M158](/packages/orchestra-canvas)[illuminate/pipeline

The Illuminate Pipeline package.

9446.6M213](/packages/illuminate-pipeline)[illuminate/pagination

The Illuminate Pagination package.

10532.5M862](/packages/illuminate-pagination)[spatie/laravel-pjax

A pjax middleware for Laravel 5

513371.8k11](/packages/spatie-laravel-pjax)[spatie/laravel-mix-preload

Add preload and prefetch links based your Mix manifest

169176.0k2](/packages/spatie-laravel-mix-preload)

PHPackages © 2026

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