PHPackages                             blenderdeluxe/khipu-laravel - 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. blenderdeluxe/khipu-laravel

ActiveLibrary[Payment Processing](/categories/payments)

blenderdeluxe/khipu-laravel
===========================

A Laravel Package to use Khipu (http://khipu.com) modified from freshworkstudio/khipu-laravel all base rights for freshworkstudio

1.0.2(6y ago)0266↓100%MITPHPPHP &gt;=5.3.0CI failing

Since Aug 6Pushed 6y ago1 watchersCompare

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

READMEChangelog (3)Dependencies (3)Versions (4)Used By (0)

Laravel Khipu Package
=====================

[](#laravel-khipu-package)

Package modified from Freshwork Studio for personal use all rights for them.

[Khipu](http://khipu.com) It's a chilean payment gateway to automate wire transfers. You can checkout the Khipu API documentation [here](https://khipu.com/page/api).

This project is based on the amazing guys of Tifón and Freshwork Studio.

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

[](#installation)

### Step 1: Install Through Composer

[](#step-1-install-through-composer)

```
composer require blenderdeluxe/khipu-laravel

```

### Step 2: Add the Service Provider

[](#step-2-add-the-service-provider)

In the `app/config/app.php` file, add the following to the `providers` array:

```
'providers' => array(
    …
    BlenderDeluxe\LaravelKhipu\KhipuServiceProvider::class,
    …
),
```

### Step 3: Add the alias

[](#step-3-add-the-alias)

In the `app/config/app.php` file, add the following to the `aliases` array:

```
'aliases' => array(
    …
    'Khipu' => BlenderDeluxe\LaravelKhipu\Facades\Khipu::class,
    …
),
```

### Step 3: Publish the configuration

[](#step-3-publish-the-configuration)

```
$ php artisan vendor:publish --provider="BlenderDeluxe\LaravelKhipu\KhipuServiceProvider"
```

### Step 4: Configure your .env or edit you brand new `config/khipu.php`

[](#step-4-configure-your-env-or-edit-you-brand-new-configkhipuphp)

```
...
KHIPU_ID=99999
KHIPU_KEY=ec19c08f3bdb2162e99144b1f6b9c0e2fe1856e0

```

### Step 5: Enjoy!

[](#step-5-enjoy)

Usage
-----

[](#usage)

#### Option A: use the Facade

[](#option-a-use-the-facade)

```
//routes.php

Route::get('/', function () {
    $banks =  Khipu::loadService('ReceiverBanks')->consult();

    echo $banks;
});
```

#### Option B: Typehint the class

[](#option-b-typehint-the-class)

TypeHint the `BlenderDeluxe\Khipu\Khipu` class. It'll be automatically authenticated using your configuration credentials (KHIPU\_ID and KHIPU\_KEY)

```
//routes.php

Route::get('/', function (BlenderDeluxe\Khipu\Khipu $khipu) {
    $banks =  $khipu->loadService('ReceiverBanks')->consult();

	//You can also can call the service as a properties of the class..
	$khipu->ReceiverBanks->consult();

    echo $banks;
});
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity60

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

Total

3

Last Release

2276d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/7284321?v=4)[Diego Cortés](/maintainers/blenderdeluxe)[@blenderdeluxe](https://github.com/blenderdeluxe)

---

Top Contributors

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

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/blenderdeluxe-khipu-laravel/health.svg)

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

###  Alternatives

[laraveldaily/laravel-invoices

Missing invoices for Laravel

1.5k1.3M4](/packages/laraveldaily-laravel-invoices)[musahmusah/laravel-multipayment-gateways

A Laravel Package that makes implementation of multiple payment Gateways endpoints and webhooks seamless

852.2k1](/packages/musahmusah-laravel-multipayment-gateways)[karson/mpesa-php-sdk

172.2k](/packages/karson-mpesa-php-sdk)

PHPackages © 2026

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