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

ActiveLibrary[Payment Processing](/categories/payments)

freshworkstudio/khipu-laravel
=============================

A Laravel Package to use Khipu (http://khipu.com)

1.0.3(10y ago)55.4k[3 issues](https://github.com/freshworkstudio/khipu-laravel/issues)MITPHPPHP &gt;=5.3.0

Since Sep 2Pushed 10y ago1 watchersCompare

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

READMEChangelogDependencies (3)Versions (14)Used By (0)

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

[](#laravel-khipu-package)

[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 freshworkstudio/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(
    …
    'FreshworkStudio\LaravelKhipu\KhipuServiceProvider',
    …
),
```

### 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' => 'FreshworkStudio\LaravelKhipu\Facades\Khipu',
    …
),
```

### Step 3: Publish the configuration

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

```
$ pa vendor:publish --provider="FreshworkStudio\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 `FreshworkStudio\Khipu\Khipu` class. It'll be automatically authenticated using your configuration credentials (KHIPU\_ID and KHIPU\_KEY)

```
//routes.php

Route::get('/', function (FreshworkStudio\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

29

—

LowBetter than 60% of packages

Maintenance8

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity65

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

Total

12

Last Release

3904d ago

Major Versions

0.1.8 → 1.0.12015-09-03

### Community

Maintainers

![](https://www.gravatar.com/avatar/954524bc2e96e26c6670b60375e0ed3759db6862e1d2721a074c74f92ef9a070?d=identicon)[gonzunigad](/maintainers/gonzunigad)

---

Top Contributors

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

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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