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

ActiveLibrary[API Development](/categories/api)

nicklace/laravel-icepay
=======================

Laravel integration of the icepay api

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

Since Sep 10Pushed 6y agoCompare

[ Source](https://github.com/nicklace/icepay)[ Packagist](https://packagist.org/packages/nicklace/laravel-icepay)[ RSS](/packages/nicklace-laravel-icepay/feed)WikiDiscussions master Synced yesterday

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

Laravel Icepay for Laravel 5.1
==============================

[](#laravel-icepay-for-laravel-51)

Updated the code from the [Laravel Icepay](https://github.com/hansvn/icepay) package to be able to use it with Laravel 5.1

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

[](#requirements)

- PHP &gt;=5.5
- Laravel &gt;= 5.1

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

[](#getting-started)

---

### Laravel &gt;= 5.1

[](#laravel--51)

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

    ```
    $ composer require phamels/laravel-icepay:dev-master
    ```
2. Update app/config/app.php` to activate the package

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

    # Add the Icepay alias
    'aliases' => array(
        ...
        'Icepay'          => Phamels\Icepay\Facades\Icepay::class,
    )
    ```
3. Define the config parameters in your `config/services.php` file

    ```
        'icepay' => [
            'MERCHANTID'	=> xxxxx,
            'SECRETCODE'	=> "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
            'log'			=> 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());
```

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

[](#contributing)

Contributions are welcome.

Todo's
------

[](#todos)

- Write tests

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 61.1% 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

3897d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/67083?v=4)[Nicolas Delrez](/maintainers/nicklace)[@nicklace](https://github.com/nicklace)

---

Top Contributors

[![phamels](https://avatars.githubusercontent.com/u/8149258?v=4)](https://github.com/phamels "phamels (11 commits)")[![hansvn](https://avatars.githubusercontent.com/u/3542686?v=4)](https://github.com/hansvn "hansvn (4 commits)")[![nicklace](https://avatars.githubusercontent.com/u/67083?v=4)](https://github.com/nicklace "nicklace (3 commits)")

### Embed Badge

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

```
[![Health](https://phpackages.com/badges/nicklace-laravel-icepay/health.svg)](https://phpackages.com/packages/nicklace-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)
