zarulizham / laravel-duitnow
Malaysia DuitNow payment
Fund package maintenance!
zarulizham
Installs: 2 901
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 1
Forks: 3
Open Issues: 0
Requires
- php: ^8.0
- illuminate/contracts: ^8.73|^9.0|^10.0
- spatie/laravel-package-tools: ^1.9.2
Requires (Dev)
- nunomaduro/collision: ^7.0
- orchestra/testbench: ^8.5
- pestphp/pest: ^2.6
- pestphp/pest-plugin-laravel: ^2.0
- phpunit/phpunit: ^10.1
- spatie/laravel-ray: ^1.26
README
Package for Malaysia DuitNow Online Banking/Wallet Payment
Installation
You can install the package via composer:
composer require zarulizham/laravel-duitnow
You can publish and run the migrations with:
php artisan vendor:publish --tag="duitnow-migrations"
php artisan migrate
You can publish the config file with:
php artisan vendor:publish --tag="duitnow-config"
You can publish the controller file with:
php artisan vendor:publish --tag="duitnow-controller"
This is the contents of the published config file:
return [ 'url' => env('DUITNOW_URL'), 'client_id' => env('DUITNOW_CLIENT_ID'), 'product_id' => env('DUITNOW_PRODUCT_ID'), 'client_secret' => env('DUITNOW_CLIENT_SECRET'), 'merchant_id' => env('DUITNOW_MERCHANT_ID'), 'x_signature_key' => env('DUITNOW_X_SIGNATURE_KEY'), 'token_expiry' => env('DUITNOW_TOKEN_EXPIRY', 3600), 'bank_cache' => env('DUITNOW_BANK_CACHE', 43200), # 12 hours 'merchant_name' => env('DUITNOW_MERCHANT_NAME'), 'account_type' => env('DUITNOW_MERCHANT_ACCOUNT_TYPE'), 'source_of_funds' => [ "01" ], 'certificates' => [ 'uat' => [ 'disk' => 'local', 'dir' => 'paynet/duitnow/', ], 'production' => [ 'disk' => 'local', 'dir' => 'paynet/duitnow/', ] ], 'direct_path' => env('DUITNOW_DIRECT_PATH'), 'callback_path' => env('DUITNOW_CALLBACK_PATH'), ];
Optionally, you can publish the views using
php artisan vendor:publish --tag="duitnow-views"
Usage
$duitNowPayment = new DuitNowPayment(); $bankInfo = explode('|', $request->bank); $bankId = $bankInfo[0]; $bankType = $bankInfo[1]; $redirectUrl = $duitNowPayment->initiatePayment(10, "Zarul Zubir", $bankType, "Ref: " . rand(100, 200), $bankId, 'A1000001');
Upgrade v1 to v2
This major upgrade add column on transaction table to allow morphing.
Run `php artisan vendor:publish --tag=duitnow-v2-migration`
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
License
The MIT License (MIT). Please see License File for more information.