appstract / laravel-twikey
This package is abandoned and no longer maintained.
No replacement package was suggested.
Wrapper for the Twikey PHP Client
1.0.1
2020-12-16 14:35 UTC
Requires
- php: >=7.2
- appstract/twikey-php-client: dev-master
Requires (Dev)
- phpunit/phpunit: 5.*
This package is auto-updated.
Last update: 2022-06-16 17:52:47 UTC
README
Installation
You can install the package via composer:
composer require appstract/laravel-twikey
Set the following values in your .env file:
TWIKEY_API_URL="<api url>"
TWIKEY_API_TOKEN="<your api token>"
Usage
Create an invitation:
$invite = Twikey::invite(); $invite->ct = 1234; $invite->l = 'nl'; $invite->iban = 'GB33BUKB20201555555555'; $invite->bic = 'BUKBGB22'; $invite->email = 'test@example.com'; $invite->reminderDays = 14; $invite->save(); var_dump($invite->toArray());
Find a mandate:
$mandate = Twikey::mandate()->find('ABC5'); var_dump($mandate->toArray());
Create a transaction:
$transaction = Twikey::transaction(); $transaction->mndtId = 'ABC5'; $transaction->message = 'Invoice 1234'; $transaction->amount = '84.32'; $transaction->save(); var_dump($transaction->toArray());
Testing
composer test
Contributing
Contributions are welcome, thanks to y'all :)
About Appstract
Appstract is a small team from The Netherlands. We create (open source) tools for Web Developers and write about related subjects on Medium. You can follow us on Twitter, buy us a beer or support us on Patreon.
License
The MIT License (MIT). Please see License File for more information.