Download the PHP package maksa988/laravel-wayforpay without Composer

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

Laravel payment processor package for WayForPay gateway

Latest Stable Version StyleCI CodeFactor Total Downloads License

Accept payments via WayForPay (wayforpay.com) using this Laravel framework package (Laravel).

Laravel >= 5.5.*, PHP >= 7.2

Installation

Require this package with composer.

If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php

Add the WayForPay facade to your facades array:

Copy the package config to your local config with the publish command:

Configuration

Once you have published the configuration files, please edit the config file in config/wayforpay.php.

Usage

This package using official WayForPay SDK for PHP. You can find a full description and content of the classes used by this package in the official SDK repository - wayforpay/php-sdk

1. Purchase

Purchase request is used to effect payment with client on the protected wayforpay site.

Official documentation - https://wiki.wayforpay.com/en/view/852102

The method purchase() allows you to prepare data for a widget or form. And also you can get an array with data to build your form.

You can get JS code for widget (https://wiki.wayforpay.com/en/view/852091) using getWidget method after call purchase method.

2. Charge

Charge request is used for quick payment making in one action. It is performed within the limits of single-staged pattern.

The result of request processing is the withdrawal of monetary assets from client’s card.

Official documentation - https://wiki.wayforpay.com/en/view/852194

The method charge() allows you to send request for charge operation and get object of response.

You can use \Maksa988\WayForPay\Domain\Card::class instead of WayForPay\SDK\Domain\Card and or WayForPay\SDK\Domain\CardToken. This class simplify input card and card token using one class. When you put only first argument, this card defined as card-token. If you are put all arguments, this be defined as bank card.

3. Check Status

Check Status request is used for checking of payment status on orderReference.

Official documentation - https://wiki.wayforpay.com/en/view/852117

The method check() allows you to send request for check status of your order using order id.

4. Refund

Refund request is to be used for making of assets refund or cancellation of payment.

Official documentation - https://wiki.wayforpay.com/en/view/852115

The method refund() allows you to send request for refund of payment.

5. Create invoice

The present API allows to issue invoices to the clients for payment for goods/services.

Official documentation - https://wiki.wayforpay.com/en/view/608996852

The method createInvoice() allows you to create invoice.

6. Complete 3DS

In case of merchantTransactionSecureTtype= 3DS, there is initially performed the checking of the card for participation in 3d secure program. If the card supports 3D Secure verification the system Wayforpay will return the parameters for authentication of the client. With these parameters the merchant has to transfer the client to url of issuer for authentication. The time during which the session for verification is active - 10 minutes. If within 10 minutes COMPLETE_3DS will not be obtained the system will cancel transaction as unsuccessful.

7. Handle payment

You can use handle payment process using service url at WayForPay. And using controller at Laravel with this package you can handle payment.

For handle request from wayforpay you should create controller and action. In the action you should use method handleServiceUrl().

In the first argument you should put array of request data or Arrayble class. In the second argument you should put Closure what be called when payment is success, and this function will be passed two parameters: Transaction object and Closure using for create success response.

Changelog

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

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please send me an email at [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.


All versions of laravel-wayforpay with dependencies

PHP Build Version
Package Version
Requires php Version ^7.2
guzzlehttp/guzzle Version ~6.2|~7.0
illuminate/support Version ^5.5|^6.0|^7.0|^8.0
wayforpay/php-sdk Version ^1.0
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 maksa988/laravel-wayforpay contains the following files

Loading the files please wait ....