Download the PHP package jarnovanleeuwen/php-tikkie without Composer
On this page you can find all versions of the php package jarnovanleeuwen/php-tikkie. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download jarnovanleeuwen/php-tikkie
More information about jarnovanleeuwen/php-tikkie
Files in jarnovanleeuwen/php-tikkie
Package php-tikkie
Short Description Implementation of the Tikkie API interface.
License MIT
Homepage https://github.com/jarnovanleeuwen/php-tikkie
Informations about the package php-tikkie
⚠️ Tikkie has announced that on 01-01-2021 it will stop supporting the Tikkie Payment Request API (the API that this library implements) in favor of the new Tikkie API. See https://medium.com/abn-amro-developer/abn-amro-introduces-the-new-tikkie-api-87c8bb54720a for more information, including a roadmap.
Currently, I am not planning to update this library. This might change in the future, but meanwhile PRs are welcome.
Easily create payment requests through Tikkie.
Unofficial PHP implementation of the Tikkie Payment Request API (deprecated, available until 01-01-2021).
Installation
PHPTikkie requires PHP 7.1+
Add this package to your project using Composer:
composer require jarnovanleeuwen/php-tikkie
Usage
Initialise PHPTikkie
Create platform
Create user
Create payment request
Get payment request
List platforms
List users
List payment requests
Process payments
Exception handling
All methods may return a PHPTikkieException
containing an error code and description.
use PHPTikkie\Exceptions\PHPTikkieException;
try {
var_dump($tikkie->platforms());
} catch (PHPTikkieException $exception) {
print $exception->getMessage(); // [ERR_2005_002] The API Key is invalid for the requested resource | traceId: 6fda2ce8-225d-4ca2-920a-b687c7aeb2f3 | (see https://developer.abnamro.com/get-started#obtaining-an-api-key)
}