flarone/laravel-eboekhouden

一个用于E-boekhouden.nl的Laravel包

1.0.1 2024-06-12 19:54 UTC

This package is auto-updated.

Last update: 2024-09-12 20:34:40 UTC


README

使用此包,您可以轻松地将E-boekhouden.nl集成到任何PHP项目中。
如果您想使用此包并支持未来的开发。

查看原始E-boekhouden SOAP文档

安装

您可以通过composer安装此包

composer require flarone/laravel-eboekhouden

使用(示例)

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();

测试与构建

要本地测试此包,请运行

composer test

更新日志

请参阅更新日志以获取有关最近更改的更多信息。

贡献

请参阅贡献指南以获取详细信息。

安全

如果您发现任何与安全相关的问题,请发送电子邮件至info@flarone.com,而不是使用问题跟踪器。

鸣谢

许可证

MIT许可证(MIT)。请参阅许可证文件以获取更多信息。