Download the PHP package tbclla/laravel-revolut-merchant without Composer

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

Latest Stable Version License Build Status Scrutinizer Code Quality

Laravel-Revolut (Merchant)

An unofficial Laravel wrapper for Revolut's Merchant API.
A sister package for Revolut's Open API for Business can be found here.

Requirements

Getting Started

Follow this guide on how to install the package, and read Revolut's Merchant API documentation to learn more about the functionalities offered by the API.

⚠️ Please use a sandbox account when setting up this package, and only switch to your real-world account once you're happy that everything is working correclty.

Installing

Pull the package in through Composer

Service Provider & Facade

If you have disabled auto-discovery, add the service provider and facade to your config/app.php.

Publish the configuration (optional)

If you would like to publish this package's configuration to your own config directory, use the below artisan command.

Set environment variables

Add the following keys to your project's .env file, as all of the configuration values are read from there.
❗Complete the REVOLUT_MERCHANT_API_KEY with the API key from your merchant account.

That's it, you're all done.

How to use this package

To use the client, you can either instantiate a new tbclla\RevolutMerchant\Client which accepts your API key, and whether or not to run in sandbox mode:

Or you can use the facade, which will inject your environment values.
For brevity, all of the examples in this documentation are using the facade.

Orders

Please refer to Revolut's official documentation on orders for additional information on how to use the orders endpoint.

Create an order

Retrieve an order

Capture an order

Cancel an order

Refund an order

Web-Hooks

Read Revolut's official documentation about web-hooks to learn more.

Create the web-hook

Revoke the web-hook

Retrieve web-hooks

Revolut Checkout Widget API

To use the checkout widget, you have to embed a script from Revolut on any page that will use the checkout widget.

This package includes a @revolutMerchantScript blade directive which will embed this script for you and set the correct source depending on your configured environment.

Brief example

Below is a quick and dirty example to illustrate how to create a new payment order, and subsequently display a payment pop-up.

For this example, the logged in user sends an AJAX request to a /purchase route, where a new payment order is created. The payment order's public_id is then returned and passed to RevolutCheckout().

PHP

JavaScript

❗Don't forget that any page which intends to use RevolutCheckout() must include the above mentioned checkout widget script before calling RevolutCheckout().

License

This project is licensed under the MIT License - see the LICENSE.md file for details


All versions of laravel-revolut-merchant with dependencies

PHP Build Version
Package Version
Requires guzzlehttp/guzzle Version ^6.5
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 tbclla/laravel-revolut-merchant contains the following files

Loading the files please wait ....