php-bug-catcher / bug-catcher-curl-reporter
Library to report exceptions to Bug Catcher
Installs: 231
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/php-bug-catcher/bug-catcher-curl-reporter
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); }