mawdoo3com / copyleaks-integration
This is unofficial SDK package for Copyleaks integration
Installs: 67
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:package
Requires
- php: >=7.0
- aws/aws-sdk-php: 2.*
- guzzlehttp/guzzle: ^6.5.2
This package is auto-updated.
Last update: 2025-03-27 03:59:06 UTC
README
This is unofficial SDK package for copyleaks.com integration To install this package:
composer require mawdoo3com/copyleaks-integration
Usage:
<?php
require_once __DIR__ . "/vendor/autoload.php";
use MWCopyleaks\Authentication;
use MWCopyleaks\Scan;
try {
$auth = new Authentication(ACCOUNT_EMAIL, API_KEY);
$token = $auth->getAccessToken();
$scan = new Scan($token);
$text = 'Your plain text';
$body_base64 = base64_encode($text);
$scan_id = uniqid();
$scan->scanByFile($body_base64, 'filename.txt', 'https://domain.com/webhook/{STATUS}/'.$scan_id, $scan_id, true);
} catch (\Exception $ex) {
}