LaravelPackages.net
Acme Inc.
Toggle sidebar
zarulizham/laravel-ecommerce-payment

Malaysia payment gateway for eCommerce

6.373
1
2.0.9
About zarulizham/laravel-ecommerce-payment

zarulizham/laravel-ecommerce-payment is a Laravel package for malaysia payment gateway for ecommerce. It currently has 1 GitHub stars and 6.373 downloads on Packagist (latest version 2.0.9). Install it with composer require zarulizham/laravel-ecommerce-payment. Discover more Laravel packages by zarulizham or browse all Laravel packages to compare alternatives.

Last updated

Malaysia payment gateway for eCommerce

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Installation

You can install the package via composer:

composer require zarulizham/laravel-ecommerce-payment

You can publish and run the migrations with:

php artisan vendor:publish --tag="ecommerce-payment-migrations"
php artisan migrate

You can publish the config file with:

php artisan vendor:publish --tag="ecommerce-payment-config"

You can publish the controller file with:

php artisan vendor:publish --tag="ecommerce-payment-controller"

This is the contents of the published config file:

return [
    'password' => env('ECOMMERCE_PASSWORD'),
    'merchant_account_no' => env('ECOMMERCE_MERCHANT_ACCOUNT_NO'),
    'payment_window_url' => env('ECOMMERCE_PAYMENT_WINDOW_URL'),
    'direct_path' => env('ECOMMERCE_DIRECT_PATH'),
    'direct_url' => env('ECOMMERCE_DIRECT_URL'),
    'callback_path' => env('ECOMMERCE_CALLBACK_PATH'),
    'callback_url' => env('ECOMMERCE_CALLBACK_URL'),
    'transaction_type' => env('ECOMMERCE_TRANSACTION_TYPE', 2),
    'response_type' => env('ECOMMERCE_RESPONSE_TYPE', 'HTTP'),
];

Sample .env

ECOMMERCE_PASSWORD=
ECOMMERCE_MERCHANT_ACCOUNT_NO=
ECOMMERCE_PAYMENT_WINDOW_URL=https://3dgatewaytest.ambankgroup.com/BPG/admin/payment/PaymentWindow.jsp
ECOMMERCE_DIRECT_PATH=BPG/ecommerce/redirect
ECOMMERCE_DIRECT_URL="${APP_URL}/BPG/ecommerce/redirect"
ECOMMERCE_CALLBACK_PATH=BPG/ecommerce/callback
ECOMMERCE_CALLBACK_URL="${APP_URL}/BPG/ecommerce/callback"

Optionally, you can publish the views using

php artisan vendor:publish --tag="ecommerce-payment-views"

Usage

To test: URL/ecommerce/initiate/payment

Changelog

Please see CHANGELOG for more information on what has changed recently.

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.

Star History Chart