thepixeldeveloper / mondo-client
A PHP Mondo Bank Client
0.0.1
2016-03-04 21:07 UTC
Requires
- guzzlehttp/guzzle: ^6.1
Requires (Dev)
- phpspec/phpspec: ^2.4
- vlucas/phpdotenv: ^2.2
This package is not auto-updated.
Last update: 2024-10-26 19:47:37 UTC
README
A Mondo Bank API Client - https://getmondo.co.uk/docs
This library is an MVP and only supports the basic functionality.
Doesn't yet support pagination, expansions and file uploads. Pull requests happily accepted.
Install
composer require thepixeldeveloper/mondo-client
Quick start
// Get an instance of the Guzzle client $guzzleClient = (new Thepixeldeveloper\Mondo\GuzzleClientFactory(getenv('ACCESS_TOKEN')))->getClient(); // and create a Mondo client $client = new Thepixeldeveloper\Mondo\Client($guzzleClient, SerializerBuilder::create()->build()); // Pass the client into the relevant Client class. $ping = new Thepixeldeveloper\Mondo\Client\Ping($client); // Response is of the type Thepixeldeveloper\Mondo\Response\Ping\WhoAmI $response = $ping->whoAmI();
Accounts
$accounts = new Thepixeldeveloper\Mondo\Client\Accounts($client); $accounts->getAccounts();
Balance
$balance = new Thepixeldeveloper\Mondo\Client\Balance($client); $balance->getBalanceForAccountId(123);
Transactions
$transactions = new Thepixeldeveloper\Mondo\Client\Transactions($client); $transactions->getTransactionsForAccountId(123); $transactions->getTransaction(456);
OAuth 2
I've decided to leave out authentication for the MVP. Use a library like League/oauth2-client to get yourself an access token.
Testing
Run the phpSpec tests with ...
composer test