1. Go to this page and download the library: Download eiyaro/core-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/ */
eiyaro / core-php example snippets
$base_uri = 'https://api.eiyaro.com';
$accessToken = null;
use EIYARO\API;
$api = new API($base_uri, $accessToken);
echo "== Net Info ==\n";
$netInfo = $api->getNetInfo();
echo json_encode($netInfo) . "\n";
echo "==============\n\n";