bestoon / client
This package is abandoned and no longer maintained.
No replacement package was suggested.
Bestoon php client
dev-develop
2017-02-12 10:31 UTC
Requires
- php: >=5.6
- guzzlehttp/guzzle: ^6.2
This package is auto-updated.
Last update: 2022-03-29 00:27:04 UTC
README
A simple PHP client for Bestoon Project
Installation
you can install client with composer
composer require bestoon/client:'dev-develop'
Usage : Setconfig
You should set your API token key first with instance of client
use Bestoon\Client; $client = new Client([ 'token' => 'YOUR-TOKEN' ]);
Manage stats
You can manage your stats with generalStat method
$stats = $client->generalStat(); var_dump($stats);
Set incom
Set your income with amount and text in arguments
$client->setIncome('1000000','Test');
Set expense
Set your expense with amount and text in arguments
$client->setExpense('1000000','Test');
License
The MIT License (MIT). Please see License File for more information.