PHPackages                             zvook/php-skrill-quick-checkout - 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. [Payment Processing](/categories/payments)
4. /
5. zvook/php-skrill-quick-checkout

ActiveLibrary[Payment Processing](/categories/payments)

zvook/php-skrill-quick-checkout
===============================

PHP package for Skrill QuickCheckout interface

2.1.2(3y ago)1111.7k↑23.8%4[1 PRs](https://github.com/xaerobiont/php-skrill-quick-checkout/pulls)MITPHPPHP ^8

Since Jun 26Pushed 3y ago3 watchersCompare

[ Source](https://github.com/xaerobiont/php-skrill-quick-checkout)[ Packagist](https://packagist.org/packages/zvook/php-skrill-quick-checkout)[ Docs](https://github.com/xaerobiont/php-skrill-quick-checkout)[ RSS](/packages/zvook-php-skrill-quick-checkout/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (2)Versions (6)Used By (0)

PHP package for Skrill QuickCheckout interface
==============================================

[](#php-package-for-skrill-quickcheckout-interface)

[![Latest Stable Version](https://camo.githubusercontent.com/04f0880d6dee876c42037b6eb98318ad1b9f7c82eb7d412bd1a3078d5acb31d4/68747470733a2f2f706f7365722e707567782e6f72672f7a766f6f6b2f7068702d736b72696c6c2d717569636b2d636865636b6f75742f762f737461626c65)](https://packagist.org/packages/zvook/php-skrill-quick-checkout)[![Total Downloads](https://camo.githubusercontent.com/68ffb7697a64ef2c89ebf687679e6f119303fe7b66a0a759bf97dd892223958f/68747470733a2f2f706f7365722e707567782e6f72672f7a766f6f6b2f7068702d736b72696c6c2d717569636b2d636865636b6f75742f646f776e6c6f616473)](https://packagist.org/packages/zvook/php-skrill-quick-checkout)

### Installation

[](#installation)

```
{
  "require": {
    "zvook/php-skrill-quick-checkout": "^2"
  }
}
```

### Usage

[](#usage)

```
use Xaerobiont\Skrill\QuickCheckout;
use Xaerobiont\Skrill\PaymentProcessor;

$qc = new QuickCheckout([
    'pay_to_email' => 'mymoneybank@mail.com',
    'amount' => 100500,
    'currency' => 'EUR'
]);

$qc->setReturnUrl('https://my-domain.com')
    ->setStatusUrl('https://my-domain.com/listen-skrill')
    ->setReturnUrlTarget(QuickCheckout::URL_TARGET_BLANK);
// See QuickCheckout class to find complete list of parameters

$api = new PaymentProcessor($q);
$url = $api->getPaymentUrl();
// Redirect user to this URL
```

In your status listener

```
use Xaerobiont\Skrill\StatusResponse;
use Xaerobiont\Skrill\SkrillException;

$data = $_POST;
$response = new StatusResponse($data, skipUndefined: true);

if (
    !$response->verifySignature('your Skrill secret word') ||
    $response->getPayToEmail() !== 'mymoneybank@mail.com'
) {
    // hm, angry hacker?
}

switch ((int)$response->getStatus()) {
    case StatusResponse::STATUS_PROCESSED:
        // Payment is done. You need to return anything with 200 http code, otherwise, Skrill will retry request
        break;
    case StatusResponse::STATUS_CANCELED:
    case StatusResponse::STATUS_CHARGEBACK:
    case StatusResponse::STATUS_PENDING:
        // Process other statuses
        break;
    case StatusResponse::STATUS_FAILED:
        // Note that you should enable receiving failure code in Skrill account
        $errorCode = $data['failed_reason_code'];

// Note that StatusResponse contains parameters required for signature validation only.
// Check $_POST to find all of them
}
```

### Information

[](#information)

- Based on Skrill API version - **8.1**
- [Skrill QuickCheckout documentation](https://www.skrill.com/fileadmin/content/pdf/Skrill_Quick_Checkout_Guide.pdf)
- Skrill test merchant email: ****
- Skrill test card numbers: VISA: **4000001234567890** MASTERCARD: **5438311234567890**

###  Health Score

37

—

LowBetter than 81% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity33

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity67

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

Total

5

Last Release

1315d ago

Major Versions

1.0.0 → 2.0.02022-10-21

PHP version history (2 changes)1.0.0PHP &gt;=5.6.0

2.0.0PHP ^8

### Community

Maintainers

![](https://www.gravatar.com/avatar/8e0bebc6a6396c925fdcbb731527fa708d43a66ab469c61b689949ffd8ff80d6?d=identicon)[xaerobiont](/maintainers/xaerobiont)

---

Top Contributors

[![xaerobiont](https://avatars.githubusercontent.com/u/5050758?v=4)](https://github.com/xaerobiont "xaerobiont (23 commits)")

---

Tags

php8quickcheckoutskrillphpcheckoutskrill

###  Code Quality

TestsPHPUnit

Static AnalysisPsalm

Type Coverage Yes

### Embed Badge

![Health badge](/badges/zvook-php-skrill-quick-checkout/health.svg)

```
[![Health](https://phpackages.com/badges/zvook-php-skrill-quick-checkout/health.svg)](https://phpackages.com/packages/zvook-php-skrill-quick-checkout)
```

###  Alternatives

[cartalyst/stripe-laravel

Laravel 11 integration for the Cartalyst Stripe package.

3462.7M9](/packages/cartalyst-stripe-laravel)[yandex-money/yandex-money-sdk-php

Yandex.Money API SDK for PHP

105168.9k2](/packages/yandex-money-yandex-money-sdk-php)[cryptonator/merchant-php-sdk

Cryptonator.com Merchant API SDK for PHP

2714.4k](/packages/cryptonator-merchant-php-sdk)

PHPackages © 2026

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