dev-master
9999999-devDinero REST wrapper for Laravel
MIT
The Requires
by Lasse Rafn
laravel api wrapper integration dinero
Dinero REST wrapper for Laravel
This is a PHP/Laravel wrapper for Dinero., (*1)
This package is no longer actively maintained, as I'm switching to this one: LasseRafn/php-dinero, (*2)
illuminate/support
)You could actually use this for non-Laravel projects aswell, since we do not utilize any Laravel-specific functionality (we use Illuminate collections, that is required in the composers file) However I do not support anything but Laravel, so it has not been tested. Use at your own risk., (*3)
composer require lasserafn/dinero-economic
```` php $dinero = new \LasseRafn\Dinero\Dinero( $clientId, $clientSecret ); $dinero->auth( $apiKey, $orgId ); // this WILL send a request to the auth API., (*4)
$contacts = $dinero->contacts()->perPage(10)->page(2)->get();, (*5)
// Do something with the contacts., (*6)
```` php $invoices = $dinero->invoices()->all();
```` php $products = $dinero->products()->deletedOnly()->all();, (*7)
You can also use an old auth token, if you dont want to auth everytime you setup a new instance of Dinero. ```` php $dinero = new \LasseRafn\Dinero\Dinero( $clientId, $clientSecret ); $dinero->setAuth($token, $orgId); // this will NOT send a request to the auth API. $products = $dinero->products()->deletedOnly()->all();
I created this library to make integrations with Dinero easier, considering we do A LOT of integrations at my work. I did this project while working at Bizz Zolutions., (*8)
Dinero REST wrapper for Laravel
MIT
laravel api wrapper integration dinero