awkaay/nexusggr

There is no license information available for the latest version (v2.0.1) of this package.

Easy integration API for nexusggr.

v2.0.1 2025-03-05 19:43 UTC

This package is auto-updated.

Last update: 2025-07-05 20:36:54 UTC


README

Installation

Required :

  • Laravel 11 or higher
  • PHP 8.2 or higher

Open your laravel project directory then install

  composer require awkaay/nexusggr
  • Place it inside the .env file
NEXUSGGR_AGENT=youragent
NEXUSGGR_TOKEN=yourtoken
NEXUSGGR_ENDPOINT=https://api.nexusggr.com

Usage/Examples

  • Create new user:
use Awkaay\Nexusggr\Nexusggr;

$nexusggr = new Nexusggr;
$register = $nexusggr->register(username: 'test');
  • Deposit or Withdraw:
use Awkaay\Nexusggr\Nexusggr;

$nexusggr = new Nexusggr;
$deposit = $nexusggr->transaction(username: 'test', type: 'deposit', amount: 100000);
$withdraw = $nexusggr->transaction(username: 'test', type: 'withdraw', amount: 100000);
  • Reset User Balance:
use Awkaay\Nexusggr\Nexusggr;

$nexusggr = new Nexusggr;
$resetBalanceAllUsers = $nexusggr->resetUserBalance();
<!-- OR -->
$resetBalanceByUsername = $nexusggr->resetUserBalance(username: 'test');
  • Etc
use Awkaay\Nexusggr\Nexusggr;

$nexusggr = new Nexusggr;
$launchGame = $nexusggr->launchGame();
$providers = $nexusggr->providers();
$games = $nexusggr->games();
$turnovers = $nexusggr->turnovers();
$currentPlayers = $nexusggr->currentPlayers();
$callScatterList $nexusggr->callScatterList();
$callScatterApply = $nexusggr->callScatterApply();
$callHistory = $nexusggr->callHistory();
$cancelCall = $nexusggr->cancelCall();
$controlUserRtp = $nexusggr->controlUserRtp();
$controlAllUsersRtp = $nexusggr->controlAllUsersRtp();

Authors