casino25/php-api-client

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

Installs: 6 851

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 1

pkg:composer/casino25/php-api-client

v1.1.0 2025-06-24 12:25 UTC

This package is auto-updated.

Last update: 2025-09-24 13:05:56 UTC


README

PHP API Client for Casino v2.5

Example of usage:

<?php
use casino25\api\client\Client;

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

$client = new Client(array(
        'url' => 'https://api.example.com/v1/', // You'll get it with documentation.
        'sslKeyPath' => __DIR__.'/ssl/apikey.pem',
));

var_export($client->listGames());