php-bug-catcher / bug-catcher-curl-reporter
Library to report exceptions to Bug Catcher
v1.0.0
2024-08-18 19:22 UTC
Requires
- php: >=8.1
- ext-curl: *
- kregel/exception-probe: ^1.0
Requires (Dev)
- phpunit/phpunit: ^9.5
README
Setup
composer require php-bug-catcher/bug-catcher-curl-reporter
Try it
$curlReporter = new \BugCatcher\Reporter\CurlReporter( "https://YourBugTrackerInstance.com:8000", 'projectName', true ); try { throw new Exception("Test exception"); } catch (Exception $e) { $curlReporter->reportException($e); }