PHPackages                             payerurl/binance-and-crypto-checkout - 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. payerurl/binance-and-crypto-checkout

ActivePackage[Payment Processing](/categories/payments)

payerurl/binance-and-crypto-checkout
====================================

Binance and crypto payment gateway

1.0.3(2mo ago)03MITPHPPHP ^7.0|^8.0

Since Feb 4Pushed 2mo agoCompare

[ Source](https://github.com/muhitmonsur/binance-and-crypto-checkout)[ Packagist](https://packagist.org/packages/payerurl/binance-and-crypto-checkout)[ RSS](/packages/payerurl-binance-and-crypto-checkout/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)Dependencies (1)Versions (6)Used By (0)

Binance &amp; Crypto Checkout for Laravel
=========================================

[](#binance--crypto-checkout-for-laravel)

[![Latest Stable Version](https://camo.githubusercontent.com/89d280db7e636cae6bad2ea286962650d195761985ff12b04709fbed7a484a89/68747470733a2f2f706f7365722e707567782e6f72672f706179657275726c2f62696e616e63652d616e642d63727970746f2d636865636b6f75742f762f737461626c65)](https://packagist.org/packages/payerurl/binance-and-crypto-checkout)[![Total Downloads](https://camo.githubusercontent.com/07c27413144e1be4cbf39a8decccb1333ef13c49f5828a32bdea01e0f7f099b7/68747470733a2f2f706f7365722e707567782e6f72672f706179657275726c2f62696e616e63652d616e642d63727970746f2d636865636b6f75742f646f776e6c6f616473)](https://packagist.org/packages/payerurl/binance-and-crypto-checkout)[![License](https://camo.githubusercontent.com/8ec2473e48e32350737e3c2fa7aa8b4626b99aab5df5655fab7a56ed5de060d4/68747470733a2f2f706f7365722e707567782e6f72672f706179657275726c2f62696e616e63652d616e642d63727970746f2d636865636b6f75742f6c6963656e7365)](https://packagist.org/packages/payerurl/binance-and-crypto-checkout)

[![Banner](https://raw.githubusercontent.com/muhitmonsur/assets/refs/heads/main/banner-772x250.png)](https://raw.githubusercontent.com/muhitmonsur/assets/refs/heads/main/banner-772x250.png)

---

🚀 Introduction
--------------

[](#-introduction)

**Binance &amp; Crypto Checkout for Laravel** is a secure cryptocurrency payment gateway powered by **Payerurl**.

It enables merchants to accept crypto payments directly into their wallets without intermediaries.

Customers never leave your Laravel checkout page.

---

💳 Supported Payment Methods
---------------------------

[](#-supported-payment-methods)

- Binance QR Code
- Binance Pay
- USDT (TRC20 / ERC20)
- USDC (ERC20)
- Bitcoin (BTC)
- Ethereum (ETH ERC20)

---

🌍 Key Features
--------------

[](#-key-features)

- ✅ 169+ Fiat Currency Support (USD, EUR, GBP, CAD, BDT, etc.)
- ✅ Real-Time Exchange Rate Conversion
- ✅ Direct Wallet Settlement
- ✅ No KYC Required (Basic Accounts)
- ✅ Secure API Verification
- ✅ Instant Order Status Update
- ✅ 100% Free &amp; Open Source
- ✅ Laravel 8, 9, 10, 11 Compatible
- ✅ 24/7 Telegram Support

---

🔗 Live Demo
-----------

[](#-live-demo)

👉 [Laravel Binance QR and Crypto payment | Payerurl](https://payerurl.com/)

---

📦 Installation
--------------

[](#-installation)

```
composer require payerurl/binance-and-crypto-checkout
```

⚙️Publish Configuration
-----------------------

[](#️publish-configuration)

```
php artisan vendor:publish --provider="Payerurl\Providers\AppServiceProvider" --tag=config
```

🔑 Environment Configuration
---------------------------

[](#-environment-configuration)

Add your API credentials to .env:

```
PAYERURL_PUBLIC_KEY="your_public_key"
PAYERURL_SECRET_KEY="your_secret_key"

```

Get your API keys from:

💳 Payment Integration
---------------------

[](#-payment-integration)

#### 📌 Function Signature

[](#-function-signature)

```
payment($invoiceId, $amount, $currency = 'usd', $data)
```

✅ Required Parameters
---------------------

[](#-required-parameters)

ParameterTypeRequiredDescription$invoiceIdstringYesUnique Order ID$amountintYesAmount in smallest unit (e.g., cents)$currencystringNoDefault: usd$dataarrayYesCustomer &amp; URL information📦 $data Array Structure
-----------------------

[](#-data-array-structure)

```
$data = [
    'first_name'   => 'John',
    'last_name'    => 'Doe',
    'email'        => 'john@example.com',
    'redirect_url' => 'https://yourdomain.com/payment-success',
    'notify_url'   => 'https://yourdomain.com/api/payment-notify',
    'cancel_url'   => 'https://yourdomain.com/checkout'
];
```

🧪 Example Controller Integration
--------------------------------

[](#-example-controller-integration)

```
use Payerurl\Payerurl;

public function pay()
{
    $invoiceId = 'INV-1001';
    $amount = 1000; // $10.00
    $currency = 'usd';

    $data = [
        'first_name' => 'Alice',
        'last_name' => 'Smith',
        'email' => 'alice@example.com',
        'redirect_url' => route('payment.success'),
        'notify_url' => route('payment.notify'),
        'cancel_url' => route('cart')
    ];

    $response = Payerurl::payment($invoiceId, $amount, $currency, $data);

    if ($response['status']) {
        return redirect($response['redirectUrl']);
    }

    return back()->with('error', $response['message']);
}
```

🔔 Webhook (Payment Notify) Example
----------------------------------

[](#-webhook-payment-notify-example)

Add route:

```
Route::post('/payment-notify', [PaymentController::class, 'notify'])->name('payment.notify');
```

🔄 API Response
--------------

[](#-api-response)

#### ✅ Success

[](#-success)

```
[
    'status' => true,
    'redirectUrl' => "https://dash.payerurl.com/payment/WP112XXXXX"
]
```

#### ❌ Error

[](#-error)

```
[
    'status' => false,
    'message' => "Something went wrong. Please try again."
]
```

🔐 Security
----------

[](#-security)

- ✅ Secure server-to-server API communication
- ✅ Callback verification
- ✅ API key authentication
- ✅ No sensitive customer data stored

🖼 Screenshots
-------------

[](#-screenshots)

[![](https://raw.githubusercontent.com/muhitmonsur/assets/refs/heads/main/screenshot-1.png)](https://raw.githubusercontent.com/muhitmonsur/assets/refs/heads/main/screenshot-1.png)

[![](https://raw.githubusercontent.com/muhitmonsur/assets/refs/heads/main/screenshot-2.png)](https://raw.githubusercontent.com/muhitmonsur/assets/refs/heads/main/screenshot-2.png)

[![](https://raw.githubusercontent.com/muhitmonsur/assets/refs/heads/main/screenshot-4.png)](https://raw.githubusercontent.com/muhitmonsur/assets/refs/heads/main/screenshot-4.png)

[![](https://raw.githubusercontent.com/muhitmonsur/assets/refs/heads/main/screenshot-6.png)](https://raw.githubusercontent.com/muhitmonsur/assets/refs/heads/main/screenshot-6.png)

[![](https://raw.githubusercontent.com/muhitmonsur/assets/refs/heads/main/screenshot-7.png)](https://raw.githubusercontent.com/muhitmonsur/assets/refs/heads/main/screenshot-7.png)

[![](https://raw.githubusercontent.com/muhitmonsur/assets/refs/heads/main/screenshot-8.png)](https://raw.githubusercontent.com/muhitmonsur/assets/refs/heads/main/screenshot-8.png)

🧾 License
---------

[](#-license)

This package is open-sourced software licensed under the MIT License.

📞 Support
---------

[](#-support)

#### 🌐 Website:

[](#-website-httpspayerurlcom)

#### 📞 Telegram:

[](#-telegram-httpstmepayerurl)

#### 📧 Email:

[](#-email-supportpayerurlcom)

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance86

Actively maintained with recent releases

Popularity3

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 75% 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 ~6 days

Total

4

Last Release

78d ago

### Community

Maintainers

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

---

Top Contributors

[![muhitmonsur](https://avatars.githubusercontent.com/u/27144439?v=4)](https://github.com/muhitmonsur "muhitmonsur (9 commits)")[![RashiqulRony](https://avatars.githubusercontent.com/u/26733567?v=4)](https://github.com/RashiqulRony "RashiqulRony (3 commits)")

---

Tags

cryptopaypalbitcoinpayment gatewayethereumcoinbasebinanceUSDCUSDTcrypto paymentbinance payment

### Embed Badge

![Health badge](/badges/payerurl-binance-and-crypto-checkout/health.svg)

```
[![Health](https://phpackages.com/badges/payerurl-binance-and-crypto-checkout/health.svg)](https://phpackages.com/packages/payerurl-binance-and-crypto-checkout)
```

###  Alternatives

[ccxt/ccxt

A cryptocurrency trading API with more than 100 exchanges in JavaScript / TypeScript / Python / C# / PHP / Go

41.5k328.9k1](/packages/ccxt-ccxt)[coinpaymentsnet/coinpayments-php

A PHP wrapper for the CoinPayments.net v1 API.

55126.2k](/packages/coinpaymentsnet-coinpayments-php)

PHPackages © 2026

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