0.0.3 2022-06-10 13:25 UTC

This package is auto-updated.

Last update: 2025-07-10 20:53:59 UTC


README

Install

composer require trade-api-prototype/src

Example

Example using a class in work

$Trade = new Trade\Payeer(array(
    'id' => 'XXXXX',
    'key'=> 'XXXXX'
));

$Trade->Account();

Configuration example composer

 "minimum-stability": "dev",
  "require": {
    "trade-api-prototype": "dev-master",
    "phpunit/phpunit": "^9.5"
  }

Command run test

composer exec phpunit  --verbose PayeerTest