Basic Setup Examples
This directory contains basic setup examples and screenshots for getting started with the Moitribe PHP SDK.
Contents
- screenshots/ - Screenshots showing basic setup steps
- Installation examples
- Initial configuration examples
- First API call examples
Screenshots
Screenshots should be placed in the screenshots/ subdirectory and referenced using relative paths:

Basic Setup Flow
- Install SDK via Composer
- Configure API credentials
- Initialize the SDK
- Make first API call
- Handle authentication
Example Code Structure
// Basic setup example
use Veniso\Moitribe\Sdk\MoitribeApi;
$moitribe = new MoitribeApi([
'apiKey' => 'your-api-key',
'gameId' => 'your-game-id'
]);
// First API call
$result = $moitribe->authenticate()->forceLogin('player-123');