PHPackages                             appstract/twikey-php-client - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. appstract/twikey-php-client

AbandonedArchivedLibrary[API Development](/categories/api)

appstract/twikey-php-client
===========================

PHP Client for the Twikey API

0.1.1(5y ago)0470↓50%21MITPHPPHP &gt;=7.2

Since Jul 18Pushed 5y ago4 watchersCompare

[ Source](https://github.com/appstract/twikey-php-client)[ Packagist](https://packagist.org/packages/appstract/twikey-php-client)[ Docs](https://github.com/appstract/twikey-php-client)[ RSS](/packages/appstract-twikey-php-client/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (2)Versions (3)Used By (1)

Twikey PHP Client
=================

[](#twikey-php-client)

[![Latest Version on Packagist](https://camo.githubusercontent.com/2dbad670f2fef9a978a13b87eb856dca08bc44f35c91721e14ccbfe54be20668/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6170707374726163742f5477696b65792d7068702d636c69656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/appstract/Twikey-php-client)[![Total Downloads](https://camo.githubusercontent.com/07129bd436d2076339d247a2821ce60ef6e7252b4e43b12a747f0218d1baa602/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6170707374726163742f5477696b65792d7068702d636c69656e742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/appstract/Twikey-php-client)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/9e895fa612b7a0a7047fd39f7fee700cc6144828e68fdcb257ed122a962cc303/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6170707374726163742f5477696b65792d7068702d636c69656e742f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/appstract/Twikey-php-client)

PHP Client for the [Twikey API](https://twikey.com)

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require appstract/Twikey-php-client
```

Usage
-----

[](#usage)

Setup the connection.

```
use Appstract\Twikey\Connection;
use Appstract\Twikey\Twikey;

$connection = new Connection();

$connection->setApiToken('yourapitoken');

$twikey = new Twikey($connection);
```

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());
```

Contributing
------------

[](#contributing)

Contributions are welcome, [thanks to y'all](https://github.com/appstract/Twikey-php-client/graphs/contributors) :)

About Appstract
---------------

[](#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](https://medium.com/appstract). You can [follow us on Twitter](https://twitter.com/appstractnl), [buy us a beer](https://www.paypal.me/appstract/10) or [support us on Patreon](https://www.patreon.com/appstract).

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~150 days

Total

2

Last Release

1979d ago

PHP version history (2 changes)0.1.0PHP ^7.0

0.1.1PHP &gt;=7.2

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/3015449?v=4)[Olav van Schie](/maintainers/ovanschie)[@ovanschie](https://github.com/ovanschie)

---

Top Contributors

[![gizburdt](https://avatars.githubusercontent.com/u/1470623?v=4)](https://github.com/gizburdt "gizburdt (2 commits)")

---

Tags

appstracttwikey-php-client

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/appstract-twikey-php-client/health.svg)

```
[![Health](https://phpackages.com/badges/appstract-twikey-php-client/health.svg)](https://phpackages.com/packages/appstract-twikey-php-client)
```

###  Alternatives

[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[facebook/php-business-sdk

PHP SDK for Facebook Business

90821.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

74513.7M114](/packages/meilisearch-meilisearch-php)[google/common-protos

Google API Common Protos for PHP

173103.7M50](/packages/google-common-protos)[hubspot/api-client

Hubspot API client

23914.2M16](/packages/hubspot-api-client)[botman/driver-telegram

Telegram driver for BotMan

92437.3k6](/packages/botman-driver-telegram)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
