PHPackages                             eventsquare/payconiq - 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. eventsquare/payconiq

ActiveLibrary

eventsquare/payconiq
====================

Payconiq API client for PHP

2.0.1(6y ago)52848[1 issues](https://github.com/EventSquare/payconiq-api-php/issues)[1 PRs](https://github.com/EventSquare/payconiq-api-php/pulls)PHP

Since Jun 29Pushed 5y ago2 watchersCompare

[ Source](https://github.com/EventSquare/payconiq-api-php)[ Packagist](https://packagist.org/packages/eventsquare/payconiq)[ RSS](/packages/eventsquare-payconiq/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (5)Used By (0)

[![Payconiq](https://camo.githubusercontent.com/fa43a55dd567f7b086c8ee5da1284552ab23ac4eb6be21bea773e68b386d820b/68747470733a2f2f73332d65752d776573742d312e616d617a6f6e6177732e636f6d2f6576656e747371756172652e6173736574732f6578742f706179636f6e69715f6c6f676f2e706e67)](https://camo.githubusercontent.com/fa43a55dd567f7b086c8ee5da1284552ab23ac4eb6be21bea773e68b386d820b/68747470733a2f2f73332d65752d776573742d312e616d617a6f6e6177732e636f6d2f6576656e747371756172652e6173736574732f6578742f706179636f6e69715f6c6f676f2e706e67)

Payconiq API client for PHP
===========================

[](#payconiq-api-client-for-php)

Accepting [Payconiq](https://www.payconiq.com/) payments with the use of the QR code.

Requirements
------------

[](#requirements)

To use the Payconiq API client, the following things are required:

- Payconiq Merchant Id and Access Token
- PHP &gt;= 5.6
- PHP cURL extension

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

[](#installation)

The best way to install the Payconiq API client is to require it with [Composer](http://getcomposer.org/doc/00-intro.md).

```
$ composer require eventsquare/payconiq

```

You may also git checkout or [download all the files](https://github.com/EventSquare/payconiq-api-php/archive/master.zip), and include the Payconiq API client manually.

Parameters
----------

[](#parameters)

We use the following parameters in the examples below:

```
$merchant_id = ''; // The merchant ID registered with Payconiq.
$access_token = ''; // Used to secure request between merchant backend and Payconiq backend.

$amount = 1000; // Transaction amount in cents
$currency = 'EUR'; // Currency
$callbackUrl = 'http://yoursite.com/postback'; // Callback where Payconiq needs to POST confirmation status
```

To learn more about how, when and what Payconiq will POST to your callbackUrl, please refer to the developer documentation [right here](https://dev.payconiq.com/online-payments-dock).

Usage
-----

[](#usage)

### Create a transaction

[](#create-a-transaction)

```
use Payconiq\Client;

$payconiq = new Client($merchant_id, $access_token);

// Create a new transaction
$transaction_id = $payconiq->createTransaction($amount, $currency, $callbackUrl);

// Assemble QR code content
$qrcode = 'https://payconiq.com/pay/1/' . $transaction_id;
```

### Retrieve a transaction

[](#retrieve-a-transaction)

```
use Payconiq\Client;

$payconiq = new Client($merchant_id, $access_token);

// Retrieve a transaction
$transaction = $payconiq->retrieveTransaction($transaction_id);
```

Laravel support
---------------

[](#laravel-support)

We have provided a service provider to use this class with Laravel &gt; 5.1.

Add the following line to the Framework Service Providers in config/app.php

```
Payconiq\Support\Laravel\PayconiqServiceProvider::class,
```

Add the following entry to the aliases

```
'Payconiq' => Payconiq\Support\Laravel\PayconiqFacade::class,
```

Publish the Payconiq config file with the artisan command and fill in your credentials in the config/payconiq.php config file.

```
php artisan vendor:publish
```

### Create a transaction

[](#create-a-transaction-1)

```
use Payconiq;

// Create a new transaction
$transaction_id = Payconiq::createTransaction($amount, $currency, $callbackUrl);

// Assemble QR code content
$qrcode = 'https://payconiq.com/pay/1/' . $transaction_id;
```

### Retrieve a transaction

[](#retrieve-a-transaction-1)

```
use Payconiq;

// Retrieve a transaction
$transaction = Payconiq::retrieveTransaction($transaction_id);
```

###  Health Score

32

—

LowBetter than 71% of packages

Maintenance16

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity66

Established project with proven stability

 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 ~294 days

Total

4

Last Release

2354d ago

Major Versions

1.0.2 → 2.0.02019-11-28

### Community

Maintainers

![](https://www.gravatar.com/avatar/4d59f36a224b7b877a20ba5e9bfabcd69bdd24fc86657052f3a7e90854030217?d=identicon)[GlennEngelen](/maintainers/GlennEngelen)

![](https://www.gravatar.com/avatar/e64086d82260f8641ca512596d127394fd67f0f2ca3dd3c5cd983c1a4c76932d?d=identicon)[WillemStaels](/maintainers/WillemStaels)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/eventsquare-payconiq/health.svg)

```
[![Health](https://phpackages.com/badges/eventsquare-payconiq/health.svg)](https://phpackages.com/packages/eventsquare-payconiq)
```

PHPackages © 2026

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