Logoelepay

Server Quick Start

elepay supports a variety of languages and e‑commerce services. To support an even broader range of developers, we plan to add more SDKs going forward.

Official SDKs

  • Java
  • PHP
  • Ruby (in preparation)
  • Python (in preparation)

Java

JDK 1.8 or later is required.

Manual installation

Download the SDK from GitHub and import the JAR file under libs into your project.

Install via Maven

Add elepay SDK:

<dependency>
    <groupId>io.elepay</groupId>
    <artifactId>elepay-java-sdk</artifactId>
    <version>1.2.2</version>
</dependency>

Install via Gradle

Add elepay SDK:

compile 'io.elepay:elepay-java-sdk:1.2.2'

PHP

PHP 7.3 or later is required.

Manual installation

require_once('/path/to/ElepayApi/vendor/autoload.php');

Install via Composer

  1. Add the following to composer.json:
{
  "require": {
    "elestyle/elepay-php-sdk": ">=1.2.0"
  }
}
  1. Run composer install:
composer install

Last updated on

On this page