vexura/ts3audiobot-api

A full-featured implementation of the MyLoc-Reseller API

1.0.0 2023-03-07 21:11 UTC

This package is auto-updated.

Last update: 2024-08-30 01:44:11 UTC


README

This PHP 7.2+ library allows you to communicate with the VPNResellers-API.

Latest Stable Version Total Downloads Latest Unstable Version License PHP Version Require

You can find the full API documentation here!

Getting Started

Recommended installation is using Composer!

In the root of your project execute the following:

$ composer require vexura/ts3audiobot-api

Or add this to your composer.json file:

{
    "require": {
        "vexura/ts3audiobot-api": "^1.0"
    }
}

Then perform the installation:

$ composer install --no-dev

Examples

Creating the VPNResellersAPI main object:

<?php
// Require the autoloader
require_once 'vendor/autoload.php';
// Use the library namespace
use TS3AudioBotAPI\TS3AudioBotAPI;
// Then simply pass your API-Token when creating the API client object.
$client = new TS3AudioBotAPI('host','API-Token');
// Then you are able to perform a request
var_dump($client->server()->show(1, 1));
?>