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(8mo ago)1101PHPPHP ^7.4|^8.0

Since Jun 4Pushed 8mo 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 1w 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

40

—

FairBetter than 86% of packages

Maintenance61

Regular maintenance activity

Popularity14

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity65

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

247d 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

[illuminate/pagination

The Illuminate Pagination package.

12234.6M1.1k](/packages/illuminate-pagination)[illuminate/pipeline

The Illuminate Pipeline package.

9350.2M312](/packages/illuminate-pipeline)[illuminate/redis

The Illuminate Redis package.

8314.8M410](/packages/illuminate-redis)[illuminate/cookie

The Illuminate Cookie package.

224.7M146](/packages/illuminate-cookie)[forjedio/inertia-table

Backend-driven dynamic tables for Laravel + Inertia.js

272.0k](/packages/forjedio-inertia-table)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

265.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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