abenity/abenity-php

PHP client for the Abenity API documented at https://abenity.com/developers/api

v2.2.1 2024-01-05 17:24 UTC

This package is auto-updated.

Last update: 2024-03-28 16:11:07 UTC


README

A PHP library for using the Abenity API.

You can find the full API documentation in the official documentation.

Requirements

This library works with PHP versions 7 and 8 and requires the OpenSSL module

Installation

With Composer

abenity/abenity-php package is available on Packagist.

Include it in your composer.json as follows:

  1. Add abenity/abenity-php as a dependency in composer.json.

    composer require abenity/abenity-php:^2
    
  2. Now Abenity will be autoloaded into your project.

    require 'vendor/autoload.php';
    
    $abenity = new Abenity\ApiClient('my_api_key','my_api_username','my_api_password');
    

Manually

  1. Download the latest release.

  2. Extract into a folder in your project root named "abenity-php".

  3. Include Abenity in your project like this:

    require 'abenity-php/lib/Abenity.php';
    
    $abenity = new Abenity\ApiClient('my_api_key','my_api_username','my_api_password');
    

Usage

See examples folder

Contributing

Run the tests from the project root with PHPUnit like this:

[abenity-php]# phpunit tests