Looking to hire Laravel developers? Try LaraJobs

laravel-eboekhouden maintained by flarone

Description
A Laravel package for E-boekhouden.nl
Author
Last update
2024/06/12 21:54 (dev-master)
License
Downloads
67

Comments
comments powered by Disqus

A (Laravel) PHP composer package for E-Boekhouden.nl

With this package you can easily integrate E-boekhouden.nl within any PHP project.
If you wish to use this package and want to support future development.

View the original E-boekhouden SOAP documentation.

Installation

You can install the package via composer:

composer require flarone/laravel-eboekhouden

Usage (Examples)

require __DIR__ . '/vendor/autoload.php';

$username = 'username';
$sec_code_1 = 'sec_code_1';
$sec_code_2 = 'sec_code_2';

$client = new Flarone\EBoekhouden\Client($username, $sec_code_1, $sec_code_2);

// Get a SingleSignOnLink (AutoLogin)
$autoLogin = $client->autoLogin();

// Get all Articles
$articles = $client->getArticles();

// Get all Relations
$relations = $client->getRelations();

// Get all Mutations
$mutations = $client->getMutations();

// Get all Ledgers
$ledgers = $client->getLedgers();

// Get all Invoices
$invoices = $client->getInvoices();

// Get all Balances
$balances = $client->getBalances();

Testing & building

To testing the package locally run:

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email info@flarone.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.