Download the PHP package egyjs/arb without Composer

On this page you can find all versions of the php package egyjs/arb. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package arb

Al Rajhi Bank payment gateway API wrapper (ARB)

GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

This package is a wrapper around the Al Rajhi Bank payment gateway API, it allows you to initiate a payment request hosted on the Bank website or on the merchant website, and also allows you to refund a payment.

Support us

We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.

We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.

Installation

You can install the package via composer:

//: # ()

You can publish the config file with:

This is the contents of the published config file:

add the following to your .env file

//: # () //: # ()

Usage

Bank hosted payment

to initiate a payment request hosted on the Bank website

merchant hosted payment

to initiate a payment request hosted on the merchant website, you need to create a form for the card details, and pass the card details to the Arb::card() method, then call the Arb::initiatePayment() method as shown below

Refund a payment

to refund a payment you need to call the Arb::refund() method as shown below

manage data sent & received from the bank

to send custom data to the bank, you can use the Arb::data() method before any transaction as shown below

this data will be sent to the bank and will be returned in the response from the bank, ArbPaymentSuccessEvent will be fired with the received data from the bank as shown below

Note: you can listen to the ArbPaymentSuccessEvent in both ways: EventServiceProvider::$listen or Event::listen() method

Handle the response

egyjs/arb has a built-in event driven architecture (EDA) system to handle the response from the bank; you can listen to the ArbPaymentSuccessEvent event to handle the success response, and the ArbPaymentFailedEvent event to handle the fail response,

The use of events allows for decoupling between the processing logic and the actions taken upon success or failure. By emitting events, the processing logic doesn't need to know about or be tightly coupled to the actions taken upon success or failure. you can listen to the events in 2 ways:

  1. using the EventServiceProvider class

  2. using the Event::listen() method

handle the response in the controller

if you want to handle the using a custom route instead of the events, you can pass the success and fail urls to the Arb::successUrl() and Arb::failUrl() methods as shown below

your /routes/web.php file should look like this

//: # () //: # ()

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.


All versions of arb with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0
spatie/laravel-package-tools Version ^1.16
illuminate/contracts Version ^10.0||^11.0
ext-openssl Version *
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package egyjs/arb contains the following files

Loading the files please wait ....