1. Go to this page and download the library: Download konfig/sportmonks-php library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
konfig / sportmonks-php example snippets
rtmonks = new \Sportmonks\Client(
version: "v3",
sport: "football",
apiKey: "AUTHORIZATION",
);
$version = "v3"; // The version of the API.
try {
$result = $sportmonks->cities->all(
version: $version
);
print_r($result->$getData());
print_r($result->$getPagination());
print_r($result->$getSubscription());
print_r($result->$getRateLimit());
print_r($result->$getTimezone());
} catch (\Exception $e) {
echo 'Exception when calling CitiesApi->all: ', $e->getMessage(), PHP_EOL;
}