PHPackages                             econtract/toolbox - 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. econtract/toolbox

ActiveLibrary[API Development](/categories/api)

econtract/toolbox
=================

E-Contract BVBA toolbox API package

3.0.0(4y ago)05proprietaryPHPPHP ^7.2|^8.0

Since Aug 8Pushed 4y ago1 watchersCompare

[ Source](https://github.com/econtract/toolbox)[ Packagist](https://packagist.org/packages/econtract/toolbox)[ Docs](https://aanbieders.be)[ RSS](/packages/econtract-toolbox/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (3)Versions (10)Used By (0)

E-Contract BVBA - Toolbox package
=================================

[](#e-contract-bvba---toolbox-package)

This package offers the integration of the econtract Toolbox API. This API can be used by partners and affiliates of econtract to leverage various services and utility resources owned by econtract on their own websites.

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

[](#installation)

Pull this package in through Composer:

```
    {
        "require": {
            "econtract/toolbox": "3.*"
        }
    }
```

Next, you will need to add several values to your `.env` file:

```

    TOOLBOX_API_ENDPOINT=https://toolbox.econtract.be       // Toolbox API key URL that is to be used
    TOOLBOX_API_KEY=your_toolbox_key                        // Toolbox API key that will authenticate you in our system.

```

In order to use the API (and thus this package), an API key is required. If you are in need of such a key, please get in touch with Aanbieders.be via [their website](https://www.aanbieders.be/contact).

### Laravel installation

[](#laravel-installation)

Add the service provider to your `config/app.php` file:

```
    'providers'             => array(

        //...
        \Econtract\Toolbox\ToolboxServiceProvider::class,

    ),
```

Add the API as an alias to your `config/app.php` file

```
    'facades'               => array(

        //...
        'Toolbox'               => \Econtract\Toolbox\Facades\Toolbox::class,

    ),
```

Usage
-----

[](#usage)

### Laravel usage

[](#laravel-usage)

You can access the API using the alias you have selected in your `config/app.php` file:

```

    $cities = Toolbox::getCities(
        array(
            'query'     => 'Kort',
        )
    );

    $city = Toolbox::getCity( $id );

    $addresses = Toolbox::getAddresses(
        array(
            'street'        => 'markt',
            'postcode'      => '350',
            'city'          => 'ru',
        )
    );
```

For information regarding all possible parameters and their properties, we kindly refer you to [the API documentation](http://apihelp.econtract.be/).

### Non-laravel usage

[](#non-laravel-usage)

```
    include('vendor/autoload.php');

    use Econtract/Toolbox/ToolboxService;

    $dotenv = new Dotenv\Dotenv(__DIR__);
    $dotenv->load();

    $toolboxService = new ToolboxService();
    $toolboxService->getAddresses(
        array(
            'street'        => 'markt',
            'postcode'      => '350',
            'city'          => 'ru',
        )
    );
```

License
-------

[](#license)

This package is proprietary software and may not be copied or redistributed without explicit permission.

Contact
-------

[](#contact)

Charles Dekkers (owner)

- Email:

Jan Oris (developer)

- Email:
- Telephone: +32 496 94 20 57

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity74

Established project with proven stability

 Bus Factor1

Top contributor holds 76.9% 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 ~257 days

Recently: every ~495 days

Total

9

Last Release

1507d ago

Major Versions

1.0.2 → 2.0.02016-10-26

2.1.0 → 3.0.02022-04-01

PHP version history (2 changes)1.0.0PHP &gt;=5.6.0

3.0.0PHP ^7.2|^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/527820426040478741f7ce2c915bccfb7bf1b7f094ae341f0aa71fff3b685532?d=identicon)[econtract](/maintainers/econtract)

---

Top Contributors

[![elimentz](https://avatars.githubusercontent.com/u/1410811?v=4)](https://github.com/elimentz "elimentz (10 commits)")[![bpasinski-neurosys](https://avatars.githubusercontent.com/u/12530633?v=4)](https://github.com/bpasinski-neurosys "bpasinski-neurosys (3 commits)")

---

Tags

apiToolboxaanbiedersE-Contract

### Embed Badge

![Health badge](/badges/econtract-toolbox/health.svg)

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

###  Alternatives

[andreaselia/laravel-api-to-postman

Generate a Postman collection automatically from your Laravel API

1.0k586.2k3](/packages/andreaselia-laravel-api-to-postman)[essa/api-tool-kit

set of tools to build an api with laravel

52680.5k](/packages/essa-api-tool-kit)[resend/resend-laravel

Resend for Laravel

1191.4M6](/packages/resend-resend-laravel)[specialtactics/l5-api

Dependencies for the Laravel API Boilerplate package

3672.8k2](/packages/specialtactics-l5-api)

PHPackages © 2026

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