PHPackages                             innovato/eboekhouden - 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. innovato/eboekhouden

ActiveLibrary[API Development](/categories/api)

innovato/eboekhouden
====================

PHP Wrapper for eBoekhouden SOAP server. Fork of bobkosse/eBoekhouden with some bugfixes and extra features.

v1.0.4(5y ago)210.5k↓50%7MITPHPPHP &gt;=7.0.0

Since Jul 20Pushed 5y ago1 watchersCompare

[ Source](https://github.com/innovato/eBoekhoudenApi)[ Packagist](https://packagist.org/packages/innovato/eboekhouden)[ RSS](/packages/innovato-eboekhouden/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (2)Versions (6)Used By (0)

PHP Wrapper for eBoekhouden SOAP server
=======================================

[](#php-wrapper-for-eboekhouden-soap-server)

This is forked project. Much of the work has been done by the original authors and contributors.

Disclaimer
----------

[](#disclaimer)

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

API Documentation
-----------------

[](#api-documentation)

The implementation is based on the E-Boekhouden SOAP documentation found here: [https://secure.e-boekhouden.nl/handleiding/Documentatie\_soap.pdf](https://secure.e-boekhouden.nl/handleiding/Documentatie_soap.pdf)

Setup
-----

[](#setup)

Login to your account on eBoekhouden and go to Beheer -&gt; Instellingen -&gt; API/SOAP.

Call the eBoekhoudenConnect class as follow:

`$eBoekhouden = new eBoekhoudenConnect("Username", "SecurityCode1", "SecurityCode2");`

Usage
-----

[](#usage)

After the setup, you can use the class as described below.

### Relations

[](#relations)

Here are some usage examples.

#### Find relation

[](#find-relation)

```
$eBoekhouden->getRelationByCode('BAR');

```

#### Add new relation

[](#add-new-relation)

```
$relation = new Relation();
$relation->setRelationCode("BAR");
$relation->setCompanyName("Foo Company");

$eBoekhouden->addRelation($relation);

```

### Mutations

[](#mutations)

Here are some usage examples.

#### Find mutation

[](#find-mutation)

```
$mutation = $eBoekhouden->getMutationsByMutationsByInvoiceNumber($invoiceNumber);
if (isset($mutation->Mutaties->cMutatieList)) {
    // Mutation with $invoiceNumber exists
}

```

#### Add new mutation

[](#add-new-mutation)

```
$mutation = new Mutation();
$mutation->setKind("FactuurVerstuurd"); // FactuurOntvangen, FactuurVerstuurd, FactuurbetalingOntvangen, FactuurbetalingVerstuurd, GeldOntvangen, GeldUitgegeven
$mutation->setDate(date('Y-m-d'));
$mutation->setAccount(1000); // Ledger account code
$mutation->setRelationCode("BAR"); // Must match existing Relation
$mutation->setInvoiceNumber("INV-500"); // Must be unique
$mutation->setTermOfPayment(30); // In days

$mutation->setMutationLines([
    [
        'BedragInvoer' => 100,
        'BedragExclBTW' => 100,
        'BedragBTW' => 21,
        'BedragInclBTW' => 121,
        'BTWCode' => 'HOOG_VERK_21', // Check documentation chapter 4
        'BTWPercentage' => 21,
        'TegenrekeningCode' => 1000,
    ]
]);

$eBoekhouden->addMutation($mutation);

```

### Invoices

[](#invoices)

Please not that you have to use the Mutation functions when synchronising orders/invoices from your own system to e-Boekhouden.nl, not Invoices.

`$eBoekhouden->getInvoices($dateFrom, $toDate, $invoiceNumber, $relationCode)`

FieldFormatMandatory$dateFormatyyyy-mm-ddY$toDateyyyy-mm-ddY$invoiceNumberSTRING 50N$relationCodeSTRING 15N

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity29

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 80.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 ~195 days

Total

5

Last Release

2072d ago

### Community

Maintainers

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

---

Top Contributors

[![bobkosse](https://avatars.githubusercontent.com/u/836244?v=4)](https://github.com/bobkosse "bobkosse (21 commits)")[![wgnahs](https://avatars.githubusercontent.com/u/1036155?v=4)](https://github.com/wgnahs "wgnahs (5 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/innovato-eboekhouden/health.svg)

```
[![Health](https://phpackages.com/badges/innovato-eboekhouden/health.svg)](https://phpackages.com/packages/innovato-eboekhouden)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

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