Download the PHP package pedrocasado/nibo-php without Composer
On this page you can find all versions of the php package pedrocasado/nibo-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download pedrocasado/nibo-php
More information about pedrocasado/nibo-php
Files in pedrocasado/nibo-php
Download pedrocasado/nibo-php
More information about pedrocasado/nibo-php
Files in pedrocasado/nibo-php
Vendor pedrocasado
Package nibo-php
Short Description Simple Nibo PHP wrapper
License LGPL-3.0-or-later GPL-3.0-or-later MIT
Package nibo-php
Short Description Simple Nibo PHP wrapper
License LGPL-3.0-or-later GPL-3.0-or-later MIT
Please rate this library. Is it a good library?
Informations about the package nibo-php
NiboPHP
Simple Nibo api wrapper
Operations Supported
- getCustomers
- getCustomer
- createCustomer
- createReceipt
- createScheduleCredit
- receiveSchedule
Install
composer require pedrocasado/nibo-php
Example
use NiboPhp\Nibo;
$nibo = new Nibo([
'apiToken' => 'xxx',
'organizationId' => 'xxx'
]);
$customerUuid = $nibo->createCustomer([
'name' => 'email',
'email' => '[email protected]',
]);
$customers = $nibo->getCustomers();
$customer = $nibo->getCustomer('uuid');
$receiptUuid = $nibo->createReceipt([
"accountId": "string",
"stakeholderId": "string",
"categoryId": "string",
"costCenterId": "string",
"value": 0.0,
"date": "string",
"description": "string",
"isFlag": true
]);
$uuid = $nibo->receiveSchedule('da977074-7cf1-4dbc-b3f3-25effbb72e49', [
'accountId' => '0351a02c-d92e-4b80-9cb2-a11badb5e8c3',
'payingType' => 'close',
'value' => 200.00,
'date' => '2020-06-20',
'identifier' => '2423324323',
]);
All versions of nibo-php with dependencies
PHP Build Version
Package Version
The package pedrocasado/nibo-php contains the following files
Loading the files please wait ....