casino25 / php-api-client
There is no license information available for the latest version (v1.0.2) of this package.
v1.0.2
2024-08-22 23:42 UTC
Requires
- php: >=5.3.0
- fguillot/json-rpc: 1.2.5
This package is auto-updated.
Last update: 2025-03-25 14:24:35 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());