PHPackages                             hansvn/laravel-icepay - 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. hansvn/laravel-icepay

ActiveLibrary[API Development](/categories/api)

hansvn/laravel-icepay
=====================

Laravel integration of the icepay api

v0.1(10y ago)1373PHPPHP &gt;=5.4.0

Since Sep 10Pushed 10y ago1 watchersCompare

[ Source](https://github.com/hansvn/icepay)[ Packagist](https://packagist.org/packages/hansvn/laravel-icepay)[ RSS](/packages/hansvn-laravel-icepay/feed)WikiDiscussions master Synced 1mo ago

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

Laravel Icepay
==============

[](#laravel-icepay)

This package a Laravel integration of [the icepay api](https://github.com/icepay/icepay). The package can also be used as-is (i.e. without Laravel)

!IMPORTANT the package has not been tested yet on all platforms!

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

[](#requirements)

- PHP &gt;=5.4

Getting started
---------------

[](#getting-started)

---

### Laravel &lt; 5.0

[](#laravel--50)

1. Install the `hansvn/laravel-icepay` package

    ```
    $ composer require hansvn/laravel-icepay
    ```
2. Update app/config/app.php` to activate the package

    ```
    # Add `Hansvn\Icepay\IcepayServiceProvider` to the `providers` array
    'providers' => array(
        ...
        'Hansvn\Icepay\IcepayServiceProvider',
    )

    # Add the Icepay alias
    'aliases' => array(
        ...
        'Icepay'          => 'Hansvn\Icepay\Facades\Icepay',
    )
    ```
3. Publish the config file

    ```
    $ php artisan config:publish hansvn/laravel-icepay
    ```
4. Update `app/config/packages/hansvn/icepay/config.php` with your Icepay API key:

    ```
    return array(
        'MERCHANTID'	=> xxxxx,// "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",// true,
    );
    ```

Usage
-----

[](#usage)

Below is a simple usage example of this package

Generate a payment link for €10,00:

```
$icepay = \Icepay::paymentObject();
$icepay->setAmount(1000)
			->setCountry("BE")
			->setLanguage("NL")
			->setReference("My Sample Website")
			->setDescription("My Sample Payment")
			->setCurrency("EUR");

$basic = Icepay::basicMode();
$basic->validatePayment($icepay);

return sprintf("%s",$basic->getURL(),$basic->getURL());
```

You can also take a look at [my example usage repo](https://github.com/hansvn/icepay-postback-handler) of this package that saves the orders in a database

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

[](#contributing)

Contributions are welcome.

Todo's
------

[](#todos)

- Write tests

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity48

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

Unknown

Total

1

Last Release

3903d ago

### Community

Maintainers

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

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/hansvn-laravel-icepay/health.svg)

```
[![Health](https://phpackages.com/badges/hansvn-laravel-icepay/health.svg)](https://phpackages.com/packages/hansvn-laravel-icepay)
```

###  Alternatives

[mollie/laravel-mollie

Mollie API client wrapper for Laravel &amp; Mollie Connect provider for Laravel Socialite

3624.1M28](/packages/mollie-laravel-mollie)[mll-lab/laravel-graphiql

Easily integrate GraphiQL into your Laravel project

683.2M9](/packages/mll-lab-laravel-graphiql)[spatie/laravel-route-discovery

Auto register routes using PHP attributes

23645.0k2](/packages/spatie-laravel-route-discovery)[esign/laravel-conversions-api

A laravel wrapper package around the Facebook Conversions API

69145.4k](/packages/esign-laravel-conversions-api)[didww/didww-api-3-php-sdk

PHP SDK for DIDWW API 3

1218.2k](/packages/didww-didww-api-3-php-sdk)[surface/laravel-webfinger

A Laravel package to create an ActivityPub webfinger.

113.8k](/packages/surface-laravel-webfinger)

PHPackages © 2026

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