ubitcorp / debughost-php-client
Php client for DebugHost API
Installs: 19
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/ubitcorp/debughost-php-client
This package is not auto-updated.
Last update: 2025-10-15 12:44:10 UTC
README
PHP client for DebugHost API
composer require ubitcorp/debughost-php-client
example
<?php use Ubitcorp\DebugHost\Client; require __DIR__ . '/vendor/autoload.php'; $client = new Client("Your Api Key", "Your Api Secret"); $data = $client->storeLogs( 'Exam Completed', // Message 404, // Status Code '{"code": 0, "file": "Debughost/src/Application.php", "line": 1065}', // Detail 'examinee-api', // From 'Symfony\Component\HttpKernel\Exception\HttpException' // Class ); print_r($data);