PHPackages                             devikbal/laravel-wise-payment - 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. devikbal/laravel-wise-payment

ActiveLibrary[Payment Processing](/categories/payments)

devikbal/laravel-wise-payment
=============================

Laravel Wise (TransferWise) payment gateway integration package

00PHP

Since Jul 24Pushed 9mo agoCompare

[ Source](https://github.com/shahariarikbal/wise-payment-getway)[ Packagist](https://packagist.org/packages/devikbal/laravel-wise-payment)[ RSS](/packages/devikbal-laravel-wise-payment/feed)WikiDiscussions develop Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel Wise Payment Gateway
============================

[](#laravel-wise-payment-gateway)

A Laravel package for integrating **Wise (formerly TransferWise)** payment gateway with ease.

---

Features
--------

[](#features)

- Create **currency quotes** (USD → EUR, etc.).
- Create **recipients**.
- Create and **fund transfers**.
- Supports **sandbox** and **production** environments.
- Easy configuration and ready-to-use **Facade (Wise)**.

---

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

[](#installation)

Install via Composer:

```
composer require devikbal/laravel-wise-payment
```

### Add to your `.env` file:

[](#add-to-your-env-file)

```
WISE_API_URL=https://api.sandbox.transferwise.tech
WISE_API_TOKEN=your_api_token
WISE_PROFILE_ID=your_profile_id
```

---

Usage
-----

[](#usage)

Now call Wise API services easily:

```
use Wise;

// Create a quote
$quote = Wise::createQuote(100, 'USD', 'EUR');

// Create a recipient
$recipient = Wise::createRecipient('John Doe', 'EUR', 'DE89370400440532013000');

// Create a transfer
$transfer = Wise::createTransfer($recipient['id'], $quote['id']);

// Fund the transfer
$fund = Wise::fundTransfer($transfer['id']);
```

---

Example Controller
------------------

[](#example-controller)

```
namespace App\Http\Controllers;

use Wise;

class PaymentController extends Controller
{
    public function sendPayment()
    {
        $quote = Wise::createQuote(100, 'USD', 'EUR');
        $recipient = Wise::createRecipient('John Doe', 'EUR', 'DE89370400440532013000');
        $transfer = Wise::createTransfer($recipient['id'], $quote['id']);
        $fund = Wise::fundTransfer($transfer['id']);

        return response()->json(compact('quote', 'recipient', 'transfer', 'fund'));
    }
}
```

###  Health Score

15

—

LowBetter than 3% of packages

Maintenance42

Moderate activity, may be stable

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity13

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/38ad860fe36676484c33bcd48da4a8fc71de92f26ea9748d372462f697af8f63?d=identicon)[shahariarikbal](/maintainers/shahariarikbal)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/devikbal-laravel-wise-payment/health.svg)

```
[![Health](https://phpackages.com/badges/devikbal-laravel-wise-payment/health.svg)](https://phpackages.com/packages/devikbal-laravel-wise-payment)
```

###  Alternatives

[omnipay/paypal

PayPal gateway for Omnipay payment processing library

3156.8M53](/packages/omnipay-paypal)[eduardokum/laravel-boleto

Biblioteca com boletos para o laravel

626351.9k2](/packages/eduardokum-laravel-boleto)[tbbc/money-bundle

This is a Symfony bundle that integrates moneyphp/money library (Fowler pattern): https://github.com/moneyphp/money.

1961.9M](/packages/tbbc-money-bundle)[2checkout/2checkout-php

2Checkout PHP Library

83740.3k2](/packages/2checkout-2checkout-php)[smhg/sepa-qr-data

Generate QR code data for SEPA payments

61717.2k5](/packages/smhg-sepa-qr-data)[omnipay/dummy

Dummy driver for the Omnipay payment processing library

271.2M33](/packages/omnipay-dummy)

PHPackages © 2026

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