Download the PHP package necessarylion/opn-payments-laravel without Composer

On this page you can find all versions of the php package necessarylion/opn-payments-laravel. 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 opn-payments-laravel

Opn Payments Laravel Package (Unofficial)

php php

A Laravel package for integrating Opn Payments (formerly Omise) using the omise-php SDK. This package provides a simple way to implement payments in your Laravel project with a ready-made payment form and automatic payment handling.

View Full Documentation

drawing drawing

flow diagram

Installation

  1. Install Package

  2. Generate vendor

  3. Run Migration

  4. Register Event Listener (optional)

    • Register OpnPaymentCompleted class in app/Providers/EventServiceProvider.php\ to handle your order, sending email etc...
  5. Add credentials in .env file

Create Charge

Create charge using redirect url function

Fields Type Description
amount int Amount to charge
currency string Currency of the amount eg. THB, SGD, RGN. You can use OpnPaymentsCurrency helper class for this field
cancelUri string Url to redirect back if the user cancel payment
redirectUri string Url to redirect back if the payment completed
orderId string Unique order Id.
paymentMethods array Array of payment methods. You can see list of supported methods here
locale string Language, such ash , en, th, ja. You can use OpnPaymentsLocale helper class for this field
metaData array Extra meta data to append.

Product List

If you want to show list of products in payment page, you can do as below.

OR

Event Listener

Handle Completed Payment using OpnPaymentHandler Listener\ \ in app/Listeners/OpnPaymentHandler.php, you can check the payment_successful status of payment attempt.\ to handle order, sending email etc..

Scheduler

Register scheduler for pending charges.

This scheduler will get all pending charge from records withing 24 hours. Then it will fetch status from Opn API and update if success or failed.

In app/Console/Kernel.php inside schedule() function add below line.

Additional Functions

Name Description
OpnPayments::charge() To create/retrieve charge
OpnPayments::account() To retrieve account information
OpnPayments::capability() To retrieve capability data
OpnPayments::card() To create/retrieve card
OpnPayments::token() To create/retrieve token
OpnPayments::refund() To create/retrieve refund
OpnPayments::event() To create/retrieve event
OpnPayments::source() To create/retrieve source
OpnPayments::customer() To create/retrieve customer
OpnPayments::receipt() To create/retrieve receipt
OpnPayments::transfer() To create/retrieve transfer
OpnPayments::balance() To create/retrieve balance

Contribute

Want to contribute? Great! Fork the repo and create PR to us.

Development Process


All versions of opn-payments-laravel with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
omise/omise-php Version ^2.16
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 necessarylion/opn-payments-laravel contains the following files

Loading the files please wait ....