1. Go to this page and download the library: Download uvasoftware/scanii-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/ */
uvasoftware / scanii-php example snippets
use Scanii\ScaniiClient;
use Scanii\ScaniiTarget;
$client = ScaniiClient::create('your-api-key', 'your-api-secret', ScaniiTarget::US1);
// Scan a file from disk:
$result = $client->process('/path/to/file');
echo implode(', ', $result->findings);