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.6
2024-07-16 07:03 UTC
Requires
- php: >=8.1
- guzzlehttp/guzzle: ^7.7
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.