pixel365/reydenx

Implementation of the Reyden-X API. Reyden-X is an automated service for promoting live broadcasts on external sites with integrated system of viewers and views management.

1.0.4 2024-01-30 12:33 UTC

This package is auto-updated.

Last update: 2024-04-30 00:46:13 UTC


README

Reyden-X is an automated service for promoting live broadcasts on external sites with integrated system of viewers and views management.

Installation

composer require pixel365/reydenx

Quickstart

<?php

require_once __DIR__ . '/vendor/autoload.php';

use ReydenX\V1\Client;
use ReydenX\V1\Order;

$c = new Client('EMAIL', 'PASSWORD');
$c->auth();

$o = new Order($c);
$details = $o->setOrderId(123456)
    ->details();
var_dump($details);

More examples are available under /examples.