korozcolt/payments
Composer 安装命令:
composer require korozcolt/payments
包简介
A payment gateway package for Laravel supporting Wompi, MercadoPago, and ePayco. Designed for Colombian and Latin American markets.
README 文档
README
A unified payment gateway package for Laravel supporting Wompi, MercadoPago, and ePayco. Designed for Colombian and Latin American markets.
Features
- Unified API - Single interface for multiple payment providers
- Three Providers - Wompi, MercadoPago, and ePayco out of the box
- Driver Architecture - Easily extensible for custom providers
- Event-Driven - Listen to payment events for business logic
- Webhook Handling - Built-in webhook controller with signature verification
- Flexible Configuration - Database or config-based credential management
- Laravel 10/11/12 - Full compatibility with recent Laravel versions
Supported Providers
| Provider | Country | Methods |
|---|---|---|
| Wompi | Colombia | Cards, PSE, Nequi, Bancolombia, Efecty |
| MercadoPago | Latin America | Cards, Bank Transfer, Cash |
| ePayco | Colombia | Cards, PSE, Efecty, Baloto |
Requirements
- PHP 8.2+
- Laravel 10, 11, or 12
Installation
composer require korozcolt/payments
Publish the configuration:
php artisan vendor:publish --tag=payments-config
Run the migrations:
php artisan vendor:publish --tag=payments-migrations php artisan migrate
Quick Start
1. Configure Environment
PAYMENTS_DEFAULT=wompi PAYMENTS_ENABLED=wompi,mercadopago,epayco WOMPI_PUBLIC_KEY=pub_test_xxx WOMPI_PRIVATE_KEY=prv_test_xxx WOMPI_INTEGRITY_KEY=test_integrity_xxx
2. Create a Payment
use Korbytes\Payments\Facades\Payments; use Korbytes\Payments\DTOs\PaymentData; $paymentData = new PaymentData( referenceId: $order->id, amount: 150000, // Amount in cents (1,500.00 COP) currency: 'COP', customer: [ 'name' => 'John Doe', 'email' => 'john@example.com', ], returnUrl: 'https://yourapp.com/payment/complete', ); // Use default driver $result = Payments::charge($paymentData); // Or specify a driver $result = Payments::driver('wompi')->charge($paymentData);
3. Handle the Result
if ($result->success) { return view('payment.widget', [ 'widgetUrl' => $result->widgetUrl, 'publicKey' => $result->publicKey, 'reference' => $result->reference, 'signature' => $result->signature, 'amount' => $result->amountInCents, ]); }
4. Listen to Events
// In EventServiceProvider use Korbytes\Payments\Events\PaymentApproved; protected $listen = [ PaymentApproved::class => [ \App\Listeners\HandlePaymentApproved::class, ], ];
// app/Listeners/HandlePaymentApproved.php class HandlePaymentApproved { public function handle(PaymentApproved $event): void { $transaction = $event->transaction; // Update your order, send emails, etc. Order::where('id', $transaction->reference_id) ->update(['status' => 'paid']); } }
Documentation
- Installation Guide - Detailed installation instructions
- Usage Guide - Complete usage examples and patterns
- Changelog - Version history
Configuration
Environment Variables
# General PAYMENTS_DEFAULT=wompi PAYMENTS_ENABLED=wompi,mercadopago,epayco PAYMENTS_USE_DATABASE=true PAYMENTS_RETURN_URL=https://yourapp.com/payment/complete PAYMENTS_WEBHOOK_URL=https://yourapp.com/payments/webhooks # Wompi WOMPI_SANDBOX=true WOMPI_PUBLIC_KEY=pub_test_xxx WOMPI_PRIVATE_KEY=prv_test_xxx WOMPI_INTEGRITY_KEY=test_integrity_xxx WOMPI_EVENTS_SECRET=test_events_xxx # MercadoPago MERCADOPAGO_SANDBOX=true MERCADOPAGO_ACCESS_TOKEN=TEST-xxx MERCADOPAGO_PUBLIC_KEY=TEST-xxx # ePayco EPAYCO_SANDBOX=true EPAYCO_PUBLIC_KEY=xxx EPAYCO_PRIVATE_KEY=xxx EPAYCO_P_CUST_ID=xxx EPAYCO_P_KEY=xxx
Webhook URLs
Configure these in your payment provider dashboards:
| Provider | URL |
|---|---|
| Wompi | https://yourapp.com/payments/webhooks/wompi |
| MercadoPago | https://yourapp.com/payments/webhooks/mercadopago |
| ePayco | https://yourapp.com/payments/webhooks/epayco |
Events
| Event | Description |
|---|---|
PaymentCreated |
Payment intent created |
PaymentApproved |
Payment approved by provider |
PaymentRejected |
Payment rejected/failed |
WebhookReceived |
Webhook received from provider |
API Reference
Facades
// Get a driver Payments::driver('wompi'); // Charge using default driver Payments::charge($paymentData); // Check availability Payments::isAvailable('wompi'); Payments::hasAvailableDriver(); // Get enabled drivers Payments::enabledDrivers(); // Get active gateways from database Payments::activeGateways(); // Extend with custom driver Payments::extend('custom', CustomDriver::class);
PaymentData DTO
$paymentData = new PaymentData( referenceId: string, // Your order/reference ID amount: int, // Amount in cents currency: string, // ISO 4217 code (default: COP) customer: array, // [name, email, phone?] returnUrl: ?string, // Redirect after payment webhookUrl: ?string, // Webhook notification URL description: ?string, // Payment description metadata: array, // Custom data items: array, // Line items );
PaymentResult DTO
$result->success; // bool $result->transaction; // PaymentTransaction model $result->provider; // PaymentProvider enum $result->widgetUrl; // Widget script URL $result->publicKey; // Provider public key $result->amountInCents; // Amount $result->currency; // Currency code $result->reference; // Transaction reference $result->signature; // Payment signature $result->redirectUrl; // Redirect URL $result->extra; // Provider-specific data $result->errorCode; // Error code (if failed) $result->errorMessage; // Error message (if failed)
Extending
Create a custom driver:
use Korbytes\Payments\Drivers\AbstractDriver; use Korbytes\Payments\Contracts\PaymentDriverInterface; class CustomDriver extends AbstractDriver implements PaymentDriverInterface { public function getName(): string { return 'custom'; } // Implement other required methods... } // Register in a service provider Payments::extend('custom', CustomDriver::class);
Testing
composer test
Security
If you discover any security-related issues, please open an issue on the GitHub repository.
Credits
License
The MIT License (MIT). Please see License File for more information.
korozcolt/payments 适用场景与选型建议
korozcolt/payments 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 175 次下载、GitHub Stars 达 2, 最近一次更新时间为 2026 年 01 月 23 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「checkout」 「payments」 「laravel」 「mercadopago」 「colombia」 「payment-gateway」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 korozcolt/payments 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 korozcolt/payments 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 korozcolt/payments 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Dealing with payments through the Egyptian payment gateway PayMob
Librería para la gestión sencilla de pagos mediante TPV Redsys y Paypal
Adds a 'checkout' to a SilverStripe site which links to an Estimate and adds the ability to setup and pay
Rich payment solutions for Laravel framework. Paypal, payex, authorize.net, be2bill, omnipay, recurring paymens, instant notifications and many more
Add a simple webshop to your Laravel project
Alfabank REST API integration
统计信息
- 总下载量: 175
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 23
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-23