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.

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/pixel365/reydenx

1.0.7 2025-08-28 11:03 UTC

This package is auto-updated.

Last update: 2025-11-28 12:05:51 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.