mhmfajar / laravel-payment-orchestrator
Laravel adapter for PHP Payment Orchestrator.
Package info
github.com/mhmfajar/laravel-payment-orchestrator
pkg:composer/mhmfajar/laravel-payment-orchestrator
0.1.1
2026-05-25 09:01 UTC
Requires
- php: ^7.3 || ^8.0
- illuminate/database: ^8.0 || ^9.0 || ^10.0
- illuminate/support: ^8.0 || ^9.0 || ^10.0
- mhmfajar/php-payment-orchestrator: ^0.1
README
Install:
composer require mhmfajar/laravel-payment-orchestrator php artisan vendor:publish --tag=payment-orchestrator-config php artisan vendor:publish --tag=payment-orchestrator-migrations php artisan migrate
Usage:
use Mhmfajar\PaymentOrchestratorLaravel\Facades\Payment; $response = Payment::create(array( 'order_id' => 'INV-001', 'amount' => 150000, 'customer_name' => 'Mhmfajar', 'customer_email' => 'mhmfajar@example.com', )); return redirect($response->getPaymentUrl());