mascotgaming / php-api-client
关于此包的最新版本(v1.0.0)没有提供许可证信息。
v1.0.0
2024-09-30 10:25 UTC
Requires
- php: >=5.3.0
- fguillot/json-rpc: 1.2.5
This package is auto-updated.
Last update: 2024-09-30 11:04:05 UTC
README
PHP的Operator API v1客户端。
示例
<?php use mascotgaming\mascot\api\client\Client; require __DIR__.'/vendor/autoload.php'; $client = new Client(array( // This is the base URL for the Operator API v1. 'url' => 'https://api.mascot.games/v1/', // This is the file path for the Operator API v1 key. 'sslKeyPath' => __DIR__.'/ssl/apikey.pem', // Sometimes it's useful to enable debug mode. // 'debug' => true, )); // This will list all games. var_export($client->listGames(array()));