maartendeblock / zenfactuurapi
PHP service to connect to the Zenfactuur API
v1.0.3
2024-07-22 11:17 UTC
Requires
- php: ^7.4 || ^8.0
- ext-json: *
- fakerphp/faker: ^1.19
- guzzlehttp/guzzle: ^6.3 || ^7
Requires (Dev)
- phpunit/phpunit: 9.3.0
README
PHP service to connect to the Zenfactuur API at https://app.zenfactuur.be/api_docs/v2.en.html
##Installation
composer require maartendeblock/zenfactuurapi
##Recourses Resources are grouped. See src/Apis directory.
##Usage
// You can find the api token in the settings of ZenFactuur. $api_token = 'YOUR API_TOKEN'; // Create an instance of the ZenFactuur Client. $zenfactuur = new \MaartenDeBlock\ZenFactuurApi\ZenFactuurApiClient($api_token); // Get all the customers. $customers = $zenfactuur->Customer->getAllCustomers(); var_dump($customers);