mascotgaming/mascot-api-client

There is no license information available for the latest version (dev-master) of this package.

dev-master 2021-05-21 16:58 UTC

This package is not auto-updated.

Last update: 2024-04-18 10:28:09 UTC


README

PHP API Client

Example of usage:

<?php
use mascotgaming\mascot\api\client\Client;

require __DIR__.'/vendor/autoload.php';

$client = new Client(array(
        'url' => 'https://api.mascot.games/v1/',
        'sslKeyPath' => __DIR__.'/ssl/apikey.pem',
));

var_export($client->listGames());