PHPackages                             kayzorelabs/omnipay-checkout.fi - 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. kayzorelabs/omnipay-checkout.fi

ActiveLibrary

kayzorelabs/omnipay-checkout.fi
===============================

3.0.2(7y ago)07MITPHP

Since May 3Pushed 7y ago1 watchersCompare

[ Source](https://github.com/kayzorelabs/omnipay-checkout.fi)[ Packagist](https://packagist.org/packages/kayzorelabs/omnipay-checkout.fi)[ RSS](/packages/kayzorelabs-omnipay-checkoutfi/feed)WikiDiscussions master Synced 2d ago

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

omnipay-checkout.fi
===================

[](#omnipay-checkoutfi)

**[Checkout.fi](http://www.checkout.fi/) driver for the Omnipay PHP payment processing library**

[![Build Status](https://camo.githubusercontent.com/4792b6585b1c26169a1edc25339684d76839f2c751fb29f5476e80d28630a589/68747470733a2f2f7472617669732d63692e6f72672f6b61797a6f72656c6162732f6f6d6e697061792d636865636b6f75742e66692e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/kayzorelabs/omnipay-checkout.fi)

Omnipay is a framework agnostic, multi-gateway payment processing library for PHP 5.3+. This package implements Checkout.fi support for Omnipay.

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

[](#installation)

**TODO**

Basic Usage
-----------

[](#basic-usage)

The following gateways are provided by this package:

- CheckoutFi

For general usage instructions, please see the main [Omnipay](https://github.com/thephpleague/omnipay) repository.

Example
-------

[](#example)

```
$gateway = Omnipay::create('CheckoutFi')

$gateway.initialize(
    array(
        'merchantId' => '375917',
        'merchantSecret' => 'SAIPPUAKAUPPIAS',
        'returnUrl' => 'https://my.ecommerce.example.com/return'
    )
);

$response = $gateway->purchase(
    array(
        'stamp' => 'YourUniqueIdentifier',
        'amount' => '1200', // Amount in cents
        'reference' => 'YourReference',
        'deliveryDate' => '20160815', // Estimated delivery date
        'firstName' => 'Paying',
        'familyName' => 'Customer',
        'address' => 'Streetaddress 123',
        'postCode' => '33100',
        'postOffice' => 'Tampere'
    )
)->send();

if ($response->isRedirect()) {
    // Redirect to checkout.fi site
    $response->redirect();
} else {
    // Request failed
    echo $response->getMessage();
}
```

See the [checkout.fi API documentation](http://www.checkout.fi/materiaalit/tekninen-materiaali/) (in Finnish) for the request parameters. Values for `VERSION`, `CURRENCY`, `DEVICE`, `CONTENT`, `TYPE`, and `ALGORITHM` are set already, although you may need to provide another value for `CONTENT`.

Once the purchase is completed or cancelled, checkout.fi will call you `returnUrl` with parameters defined in the API documentation. This you should handle with `completePurchase`, eg.

```
// CompletePurchaseRequest will read the parameters from query string
$response = $gateway->completePurchase()->send();

if ($response->isSuccessful()) {
    // TODO
} else {
    // TODO
}
```

Support
-------

[](#support)

If you are having general issues with Omnipay, we suggest posting on [Stack Overflow](http://stackoverflow.com/). Be sure to add the [omnipay tag](http://stackoverflow.com/questions/tagged/omnipay) so it can be easily found.

If you believe you have found a bug, please report it using the [GitHub issue tracker](https://github.com/vesse/omnipay-checkout.fi/issues), or better yet, fork the library and submit a pull request.

Development
-----------

[](#development)

```
composer install
composer dump-autoload
composer test
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 95% 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 ~0 days

Total

3

Last Release

2567d ago

### Community

Maintainers

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

---

Top Contributors

[![vesse](https://avatars.githubusercontent.com/u/738763?v=4)](https://github.com/vesse "vesse (57 commits)")[![kayzorelabs](https://avatars.githubusercontent.com/u/45309372?v=4)](https://github.com/kayzorelabs "kayzorelabs (3 commits)")

### Embed Badge

![Health badge](/badges/kayzorelabs-omnipay-checkoutfi/health.svg)

```
[![Health](https://phpackages.com/badges/kayzorelabs-omnipay-checkoutfi/health.svg)](https://phpackages.com/packages/kayzorelabs-omnipay-checkoutfi)
```

###  Alternatives

[silverstripe/silverstripe-omnipay

SilverStripe Omnipay Payment Module

38106.0k15](/packages/silverstripe-silverstripe-omnipay)

PHPackages © 2026

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